]> granicus.if.org Git - vim/commitdiff
patch 8.0.0098 v8.0.0098
authorBram Moolenaar <Bram@vim.org>
Thu, 24 Nov 2016 16:33:17 +0000 (17:33 +0100)
committerBram Moolenaar <Bram@vim.org>
Thu, 24 Nov 2016 16:33:17 +0000 (17:33 +0100)
Problem:    Can't build on MS-Windows.
Solution:   Add missing parenthesis.

src/version.c
src/vim.h

index 076ed520ce80b40b8f27c13d040441e678d9e7bb..47f8135ca11188f09fd479ac6215a050d098e217 100644 (file)
@@ -764,6 +764,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    98,
 /**/
     97,
 /**/
index c91e52bb2a3fe586673918a3f401b9b06dd660f0..d7bf26fe22285079bf8a2564daf00511e84684db 100644 (file)
--- a/src/vim.h
+++ b/src/vim.h
@@ -2512,7 +2512,7 @@ typedef enum
 #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);