commit | 58c358753ef47e217e18c0bf8a2fca9d1ea23a8e | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Thu Nov 24 17:33:17 2016 +0100 |
committer | Bram Moolenaar <Bram@vim.org> | Thu Nov 24 17:33:17 2016 +0100 |
tree | 6067437e204e6e1baf0fb8b80d750c56faff2f7f | |
parent | 833eb1d752426689051bf2001083359899536939 [diff] [blame] |
patch 8.0.0098 Problem: Can't build on MS-Windows. Solution: Add missing parenthesis.
diff --git a/src/vim.h b/src/vim.h index c91e52b..d7bf26f 100644 --- a/src/vim.h +++ b/src/vim.h
@@ -2512,7 +2512,7 @@ #else # if defined(WIN32) # define ELAPSED_TICKCOUNT -# define ELAPSED_INIT(v) v = GetTickCount +# define ELAPSED_INIT(v) v = GetTickCount() # define ELAPSED_FUNC(v) elapsed(v) # define ELAPSED_TYPE DWORD long elapsed(DWORD start_tick);