0
0
mirror of https://github.com/vim/vim.git synced 2025-09-24 03:44:06 -04:00

patch 7.4.1924

Problem:    Missing "void" for functions without argument.
Solution:   Add "void". (Hirohito Higashi)
This commit is contained in:
Bram Moolenaar
2016-06-12 21:18:43 +02:00
parent ae3150ec8d
commit cf08946349
6 changed files with 13 additions and 11 deletions

View File

@@ -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;