Browse Source

Fix #47535 Compilation failure in ps_fetch_from_1_to_8_bytes()

experimental/first_unicode_implementation
Johannes Schlüter 18 years ago
parent
commit
16606a9cdf
  1. 5
      ext/mysqlnd/mysqlnd_portability.h

5
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

Loading…
Cancel
Save