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/time.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/time.c')
-rw-r--r-- | src/time.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/time.c b/src/time.c index 692cef361..c82a79aaf 100644 --- a/src/time.c +++ b/src/time.c @@ -802,7 +802,7 @@ timer_valid(timer_T *timer) # if defined(EXITFREE) || defined(PROTO) void -timer_free_all() +timer_free_all(void) { while (first_timer != NULL) { |