Skip to content

Commit 58c3587

Browse files
committed
patch 8.0.0098
Problem: Can't build on MS-Windows. Solution: Add missing parenthesis.
1 parent 833eb1d commit 58c3587

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -764,6 +764,8 @@ static char *(features[]) =
764764

765765
static int included_patches[] =
766766
{ /* Add new patch number below this line */
767+
/**/
768+
98,
767769
/**/
768770
97,
769771
/**/

src/vim.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2512,7 +2512,7 @@ typedef enum
25122512
#else
25132513
# if defined(WIN32)
25142514
# define ELAPSED_TICKCOUNT
2515-
# define ELAPSED_INIT(v) v = GetTickCount
2515+
# define ELAPSED_INIT(v) v = GetTickCount()
25162516
# define ELAPSED_FUNC(v) elapsed(v)
25172517
# define ELAPSED_TYPE DWORD
25182518
long elapsed(DWORD start_tick);

0 commit comments

Comments
 (0)