diff src/ex_cmds2.c @ 9282:9f97a6290c63 v7.4.1924

commit https://github.com/vim/vim/commit/cf089463492fab53b2a5d81517829d22f882f82e Author: Bram Moolenaar <Bram@vim.org> Date: Sun Jun 12 21:18:43 2016 +0200 patch 7.4.1924 Problem: Missing "void" for functions without argument. Solution: Add "void". (Hirohito Higashi)
author Christian Brabandt <cb@256bit.org>
date Sun, 12 Jun 2016 21:30:05 +0200
parents 5e18efdad322
children 2547ef419123
line wrap: on
line diff
--- 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;