From 292785ed61c554cd1871ae88686aeaa86024336c Mon Sep 17 00:00:00 2001 From: Andrey Hristov Date: Wed, 1 Sep 2010 16:54:20 +0000 Subject: [PATCH] fix build on windows, seems this macro is not defined --- ext/mysqlnd/mysqlnd_structs.h | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/ext/mysqlnd/mysqlnd_structs.h b/ext/mysqlnd/mysqlnd_structs.h index e1e4cfcc3f..33a99ce437 100644 --- a/ext/mysqlnd/mysqlnd_structs.h +++ b/ext/mysqlnd/mysqlnd_structs.h @@ -156,13 +156,7 @@ typedef struct st_mysqlnd_options The ABI will be broken and the methods structure will be somewhere else in the memory which can crash external code. Feel free to reuse these. */ -#if SIZEOF_CHAR_P == 4 - uint32_t unused1; -#elif SIZEOF_CHAR_P == 8 - uint64_t unused1; -#else -#error Not supported platform -#endif + char * unused1; char * unused2; char * unused3; char * unused4; -- 2.40.0