diff options
Diffstat (limited to 'src/nvim/screen.c')
-rw-r--r-- | src/nvim/screen.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/screen.c b/src/nvim/screen.c index 308c95ca02..4c4df51eb2 100644 --- a/src/nvim/screen.c +++ b/src/nvim/screen.c @@ -639,7 +639,7 @@ void update_single_line(win_T *wp, linenr_T lnum) * Prepare for updating one or more windows. * Caller must check for "updating_screen" already set to avoid recursiveness. */ -static void update_prepare() +static void update_prepare(void) { cursor_off(); updating_screen = TRUE; @@ -649,7 +649,7 @@ static void update_prepare() /* * Finish updating one or more windows. */ -static void update_finish() +static void update_finish(void) { if (redraw_cmdline) { showmode(); |