diff options
author | Johannes Schlüter <johannes@php.net> | 2009-04-20 09:15:46 +0000 |
---|---|---|
committer | Johannes Schlüter <johannes@php.net> | 2009-04-20 09:15:46 +0000 |
commit | 16606a9cdf6755de0196b65c4b04d736151f7296 (patch) | |
tree | d93cc3322f9df6fbd4ab23ea133b2c6bbdd94ebc | |
parent | f0c630b9ac29b4958a6e87e4857c9bd004edd6a1 (diff) | |
download | php-git-16606a9cdf6755de0196b65c4b04d736151f7296.tar.gz |
Fix #47535 Compilation failure in ps_fetch_from_1_to_8_bytes()
-rw-r--r-- | ext/mysqlnd/mysqlnd_portability.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/ext/mysqlnd/mysqlnd_portability.h b/ext/mysqlnd/mysqlnd_portability.h index b2334182b9..9dba7fa515 100644 --- a/ext/mysqlnd/mysqlnd_portability.h +++ b/ext/mysqlnd/mysqlnd_portability.h @@ -199,6 +199,11 @@ typedef unsigned long long uint64_t; #define MYSQLND_LLU_SPEC "%llu" #endif +#ifdef _AIX +#define MYSQLND_LL_SPEC "%lli" +#define MYSQLND_LLU_SPEC "%llu" +#endif + #define MYSQLND_SZ_T_SPEC "%zd" #ifndef L64 #define L64(x) x##LL |