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/screen.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/screen.c') diff --git a/src/screen.c b/src/screen.c index 2e8a6aa1f..4c3c2b51c 100644 --- a/src/screen.c +++ b/src/screen.c @@ -379,7 +379,7 @@ char_needs_redraw(int off_from, int off_to, int cols) * Return the index in ScreenLines[] for the current screen line. */ int -screen_get_current_line_off() +screen_get_current_line_off(void) { return (int)(current_ScreenLine - ScreenLines); } @@ -3962,7 +3962,7 @@ screen_del_lines( * or inside a mapping. */ int -skip_showmode() +skip_showmode(void) { // Call char_avail() only when we are going to show something, because it // takes a bit of time. redrawing() may also call char_avail(). -- cgit v1.2.1