From a23a11b5bf03454b71fdb5deac0d5f641e222160 Mon Sep 17 00:00:00 2001 From: Yegappan Lakshmanan Date: Tue, 21 Feb 2023 14:27:41 +0000 Subject: patch 9.0.1336: functions without arguments are not always declared properly Problem: Functions without arguments are not always declared properly. Solution: Use "(void)" instead of "()". (Yegappan Lakshmanan, closes #12031) --- src/debugger.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/debugger.c') diff --git a/src/debugger.c b/src/debugger.c index f627a9a4d..b158ecdd7 100644 --- a/src/debugger.c +++ b/src/debugger.c @@ -734,7 +734,7 @@ ex_debuggreedy(exarg_T *eap) } static void -update_has_expr_breakpoint() +update_has_expr_breakpoint(void) { int i; @@ -751,7 +751,7 @@ update_has_expr_breakpoint() * Return TRUE if there is any expression breakpoint. */ int -debug_has_expr_breakpoint() +debug_has_expr_breakpoint(void) { return has_expr_breakpoint; } -- cgit v1.2.1