From 58c358753ef47e217e18c0bf8a2fca9d1ea23a8e Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Thu, 24 Nov 2016 17:33:17 +0100 Subject: [PATCH] patch 8.0.0098 Problem: Can't build on MS-Windows. Solution: Add missing parenthesis. --- src/version.c | 2 ++ src/vim.h | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/version.c b/src/version.c index 076ed520c..47f8135ca 100644 --- a/src/version.c +++ b/src/version.c @@ -764,6 +764,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 98, /**/ 97, /**/ diff --git a/src/vim.h b/src/vim.h index c91e52bb2..d7bf26fe2 100644 --- 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); -- 2.50.1