diff options
author | Andrey Hristov <andrey@php.net> | 2008-10-31 21:30:58 +0000 |
---|---|---|
committer | Andrey Hristov <andrey@php.net> | 2008-10-31 21:30:58 +0000 |
commit | 2c697a2572986a53058d3c735526683216d5e8df (patch) | |
tree | 6147786eab1c1be3a5d01eb67e9473aa189d83f9 /ext/mysqlnd/mysqlnd_portability.h | |
parent | 7e1a12673bbb6ff0a47cead9e258e8744931036e (diff) | |
download | php-git-2c697a2572986a53058d3c735526683216d5e8df.tar.gz |
Fix the build
Diffstat (limited to 'ext/mysqlnd/mysqlnd_portability.h')
-rw-r--r-- | ext/mysqlnd/mysqlnd_portability.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/mysqlnd/mysqlnd_portability.h b/ext/mysqlnd/mysqlnd_portability.h index e4eadd9fba..b7f8b93832 100644 --- a/ext/mysqlnd/mysqlnd_portability.h +++ b/ext/mysqlnd/mysqlnd_portability.h @@ -280,7 +280,7 @@ typedef uint64_t ulonglong; *(((uchar *)(T))+4))=(uchar) (((A) >> 32)); \ *(((uchar *)(T))+5))=(uchar) (((A) >> 40)); } -#define int8_tstore(T,A) *((ulonglong *) (T))= (ulonglong) (A) +#define int8store(T,A) *((ulonglong *) (T))= (ulonglong) (A) typedef union { double v; |