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/window.c | |
parent | d950984489e50b12d87c85f0cce1d672c880aa23 (diff) | |
download | vim-git-9.0.1336.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/window.c')
-rw-r--r-- | src/window.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/window.c b/src/window.c index e90333249..bfdf82587 100644 --- a/src/window.c +++ b/src/window.c @@ -824,7 +824,7 @@ cmd_with_count( * Otherwise return OK. */ static int -check_split_disallowed() +check_split_disallowed(void) { if (split_disallowed > 0) { @@ -6014,7 +6014,7 @@ frame_comp_pos(frame_T *topfrp, int *row, int *col) * Make the current window show at least one line and one column. */ void -win_ensure_size() +win_ensure_size(void) { if (curwin->w_height == 0) win_setheight(1); @@ -7357,7 +7357,7 @@ check_lnums_nested(int do_curwin) * check_lnums() must have been called first! */ void -reset_lnums() +reset_lnums(void) { win_T *wp; tabpage_T *tp; |