diff options
author | Yegappan Lakshmanan <yegappan@yahoo.com> | 2023-02-21 14:27:41 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2023-02-21 14:27:41 +0000 |
commit | a23a11b5bf03454b71fdb5deac0d5f641e222160 (patch) | |
tree | 5ce9eb5b9668eb891072ee7e03823b1c68214656 /src/screen.c | |
parent | d950984489e50b12d87c85f0cce1d672c880aa23 (diff) | |
download | vim-git-a23a11b5bf03454b71fdb5deac0d5f641e222160.tar.gz |
patch 9.0.1336: functions without arguments are not always declared properlyv9.0.1336
Problem: Functions without arguments are not always declared properly.
Solution: Use "(void)" instead of "()". (Yegappan Lakshmanan, closes #12031)
Diffstat (limited to 'src/screen.c')
-rw-r--r-- | src/screen.c | 4 |
1 files changed, 2 insertions, 2 deletions
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(). |