diff options
| author | Bram Moolenaar <Bram@vim.org> | 2016-10-12 12:13:35 +0200 |
|---|---|---|
| committer | Bram Moolenaar <Bram@vim.org> | 2016-10-12 12:13:35 +0200 |
| commit | a7c023ec88233a2db4c1f53121921e110ece8d43 (patch) | |
| tree | 79ffc0e8ac91dd74ae4c081f0db91a84fa5d1e56 /src/ex_cmds2.c | |
| parent | dc08328821a2c11e33dfb1980332e4923ec64fca (diff) | |
| download | vim-git-a7c023ec88233a2db4c1f53121921e110ece8d43.tar.gz | |
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.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ex_cmds2.c b/src/ex_cmds2.c index b8d8dca9e..bee467052 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 /* |
