diff --git a/src/version.c b/src/version.c index 076ed520ce..47f8135ca1 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 c91e52bb2a..d7bf26fe22 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);