diff options
author | Bram Moolenaar <Bram@vim.org> | 2016-06-12 21:18:43 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2016-06-12 21:18:43 +0200 |
commit | cf089463492fab53b2a5d81517829d22f882f82e (patch) | |
tree | 75f360006e672d0576d0ad93935cdb95a9cebc4c /src/ex_cmds2.c | |
parent | ae3150ec8d9da4a244acffebea55416946ca23d3 (diff) | |
download | vim-cf089463492fab53b2a5d81517829d22f882f82e.zip |
patch 7.4.1924
Problem: Missing "void" for functions without argument.
Solution: Add "void". (Hirohito Higashi)
Diffstat (limited to 'src/ex_cmds2.c')
-rw-r--r-- | src/ex_cmds2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ex_cmds2.c b/src/ex_cmds2.c index e0a392dee..e6ef38114 100644 --- a/src/ex_cmds2.c +++ b/src/ex_cmds2.c @@ -1174,7 +1174,7 @@ timer_callback(timer_T *timer) * Return the time in msec until the next timer is due. */ long -check_due_timer() +check_due_timer(void) { timer_T *timer; long this_due; |