From 16606a9cdf6755de0196b65c4b04d736151f7296 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Johannes=20Schl=C3=BCter?= Date: Mon, 20 Apr 2009 09:15:46 +0000 Subject: [PATCH] Fix #47535 Compilation failure in ps_fetch_from_1_to_8_bytes() --- ext/mysqlnd/mysqlnd_portability.h | 5 +++++ 1 file changed, 5 insertions(+) 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 -- 2.50.1