changeset 10408:401dbd352fd6 v8.0.0098

commit https://github.com/vim/vim/commit/58c358753ef47e217e18c0bf8a2fca9d1ea23a8e Author: Bram Moolenaar <Bram@vim.org> Date: Thu Nov 24 17:33:17 2016 +0100 patch 8.0.0098 Problem: Can't build on MS-Windows. Solution: Add missing parenthesis.
author Christian Brabandt <cb@256bit.org>
date Thu, 24 Nov 2016 17:45:04 +0100
parents 909ea30c733e
children 130494affaf7
files src/version.c src/vim.h
diffstat 2 files changed, 3 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/version.c
+++ b/src/version.c
@@ -765,6 +765,8 @@ static char *(features[]) =
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    98,
+/**/
     97,
 /**/
     96,
--- 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);