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/quickfix.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/quickfix.c') diff --git a/src/quickfix.c b/src/quickfix.c index 245e20bb8..63dd54167 100644 --- a/src/quickfix.c +++ b/src/quickfix.c @@ -8448,7 +8448,7 @@ ex_helpgrep(exarg_T *eap) # if defined(EXITFREE) || defined(PROTO) void -free_quickfix() +free_quickfix(void) { win_T *win; tabpage_T *tab; -- cgit v1.2.1