comparison 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
comparison
equal deleted inserted replaced
9281:3e4510f59e49 9282:9f97a6290c63
1172 /* 1172 /*
1173 * Call timers that are due. 1173 * Call timers that are due.
1174 * Return the time in msec until the next timer is due. 1174 * Return the time in msec until the next timer is due.
1175 */ 1175 */
1176 long 1176 long
1177 check_due_timer() 1177 check_due_timer(void)
1178 { 1178 {
1179 timer_T *timer; 1179 timer_T *timer;
1180 long this_due; 1180 long this_due;
1181 long next_due = -1; 1181 long next_due = -1;
1182 proftime_T now; 1182 proftime_T now;