diff options
author | Andrey Hristov <andrey@php.net> | 2010-09-01 16:54:20 +0000 |
---|---|---|
committer | Andrey Hristov <andrey@php.net> | 2010-09-01 16:54:20 +0000 |
commit | 292785ed61c554cd1871ae88686aeaa86024336c (patch) | |
tree | 4771c728693e039bd1ec289438555f6e2320cf35 /ext/mysqlnd/mysqlnd_structs.h | |
parent | 8220c2e4ce55c37369ab3681bd7fed4d9395ca70 (diff) | |
download | php-git-292785ed61c554cd1871ae88686aeaa86024336c.tar.gz |
fix build on windows, seems this macro is not defined
Diffstat (limited to 'ext/mysqlnd/mysqlnd_structs.h')
-rw-r--r-- | ext/mysqlnd/mysqlnd_structs.h | 8 |
1 files changed, 1 insertions, 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; |