summaryrefslogtreecommitdiffstats
path: root/src/ex_cmds2.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2016-10-12 12:13:35 +0200
committerBram Moolenaar <Bram@vim.org>2016-10-12 12:13:35 +0200
commita7c023ec88233a2db4c1f53121921e110ece8d43 (patch)
tree79ffc0e8ac91dd74ae4c081f0db91a84fa5d1e56 /src/ex_cmds2.c
parentdc08328821a2c11e33dfb1980332e4923ec64fca (diff)
patch 8.0.0028v8.0.0028
Problem: Superfluous semicolons. Solution: Remove them. (Ozaki Kiichi)
Diffstat (limited to 'src/ex_cmds2.c')
-rw-r--r--src/ex_cmds2.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ex_cmds2.c b/src/ex_cmds2.c
index b8d8dca9e0..bee4670526 100644
--- a/src/ex_cmds2.c
+++ b/src/ex_cmds2.c
@@ -1093,11 +1093,11 @@ static long last_timer_id = 0;
# ifdef WIN3264
# define GET_TIMEDIFF(timer, now) \
(long)(((double)(timer->tr_due.QuadPart - now.QuadPart) \
- / (double)fr.QuadPart) * 1000);
+ / (double)fr.QuadPart) * 1000)
# else
# define GET_TIMEDIFF(timer, now) \
(timer->tr_due.tv_sec - now.tv_sec) * 1000 \
- + (timer->tr_due.tv_usec - now.tv_usec) / 1000;
+ + (timer->tr_due.tv_usec - now.tv_usec) / 1000
# endif
/*