[PR] Unable to build Redis 3.0 on 32 bit.

Missing comma & typo in #ifdef.
This commit is contained in:
Jens Geyer
2015-12-02 17:32:13 +01:00
committed by Enrico Giordani
parent e2ab3e1d9d
commit 2e0bc3a538
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -449,7 +449,7 @@ BOOL QForkParentInit() {
#ifdef _WIN64
MEM_RESERVE | MEM_TOP_DOWN,
#else
MEM_RESERVE
MEM_RESERVE,
#endif
PAGE_READWRITE);
IFFAILTHROW(pHigh, "QForkMasterInit: VirtualAllocEx failed.");
+1 -1
View File
@@ -31,7 +31,7 @@
#ifndef __ZMALLOC_H
#define __ZMALLOC_H
#ifdef WIN32
#ifdef _WIN32
#include "Win32_Interop/Win32_Portability.h"
#endif