mirror of
https://github.com/php/php-src.git
synced 2026-03-28 02:02:32 +01:00
MFH: fix of the fix
This commit is contained in:
@@ -205,16 +205,20 @@ typedef unsigned long long uint64_t;
|
||||
#endif
|
||||
|
||||
#ifndef MYSQLND_LL_SPEC
|
||||
#if SIZEOF_LONG == 8
|
||||
#define MYSQLND_LL_SPEC "%li"
|
||||
#endif
|
||||
#if SIZEOF_LONG == 8
|
||||
#define MYSQLND_LL_SPEC "%li"
|
||||
#elif SIZEOF_LONG == 4
|
||||
#define MYSQLND_LL_SPEC "%lli"
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#ifndef MYSQLND_LLU_SPEC
|
||||
#if SIZEOF_LONG == 8
|
||||
#define MYSQLND_LLU_SPEC "%li"
|
||||
#endif
|
||||
#endif
|
||||
#if SIZEOF_LONG == 8
|
||||
#define MYSQLND_LLU_SPEC "%lu"
|
||||
#elif SIZEOF_LONG == 4
|
||||
#define MYSQLND_LLU_SPEC "%llu"
|
||||
#endif
|
||||
#endif /* MYSQLND_LLU_SPEC*/
|
||||
|
||||
|
||||
#define MYSQLND_SZ_T_SPEC "%zd"
|
||||
|
||||
Reference in New Issue
Block a user