Fix build on older 32-bit Ubuntu releases

Some older 32-bit versions of gcc fail on '#elif __x86_64__'.
This applies at least to what Ubuntu 14.04 and 15.04 have as
the default compiler.
This commit is contained in:
Jakub Adam 2016-02-23 15:27:33 +01:00
parent e71369d11d
commit bc750e9830

View File

@ -285,7 +285,7 @@ typedef void *PVOID64, *LPVOID64;
#if WINPR_HAVE_STDINT_H
typedef intptr_t INT_PTR;
typedef uintptr_t UINT_PTR;
#elif __x86_64__
#elif defined (__x86_64__)
typedef __int64 INT_PTR;
typedef unsigned __int64 UINT_PTR;
#else