mirror of
https://github.com/vim/vim.git
synced 2025-09-24 03:44:06 -04:00
patch 8.0.0098
Problem: Can't build on MS-Windows. Solution: Add missing parenthesis.
This commit is contained in:
@@ -764,6 +764,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
98,
|
||||||
/**/
|
/**/
|
||||||
97,
|
97,
|
||||||
/**/
|
/**/
|
||||||
|
@@ -2512,7 +2512,7 @@ typedef enum
|
|||||||
#else
|
#else
|
||||||
# if defined(WIN32)
|
# if defined(WIN32)
|
||||||
# define ELAPSED_TICKCOUNT
|
# define ELAPSED_TICKCOUNT
|
||||||
# define ELAPSED_INIT(v) v = GetTickCount
|
# define ELAPSED_INIT(v) v = GetTickCount()
|
||||||
# define ELAPSED_FUNC(v) elapsed(v)
|
# define ELAPSED_FUNC(v) elapsed(v)
|
||||||
# define ELAPSED_TYPE DWORD
|
# define ELAPSED_TYPE DWORD
|
||||||
long elapsed(DWORD start_tick);
|
long elapsed(DWORD start_tick);
|
||||||
|
Reference in New Issue
Block a user