diff options
Diffstat (limited to 'ext/pdo_firebird/php_pdo_firebird_int.h')
-rw-r--r-- | ext/pdo_firebird/php_pdo_firebird_int.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/ext/pdo_firebird/php_pdo_firebird_int.h b/ext/pdo_firebird/php_pdo_firebird_int.h index 094767fa35..70a895b4b9 100644 --- a/ext/pdo_firebird/php_pdo_firebird_int.h +++ b/ext/pdo_firebird/php_pdo_firebird_int.h @@ -34,12 +34,11 @@ #define SHORT_MAX (1 << (8*sizeof(short)-1)) #if SIZEOF_ZEND_LONG == 8 && !defined(PHP_WIN32) -# define LL_MASK "l" # define LL_LIT(lit) lit ## L #else -# define LL_MASK "ll" # define LL_LIT(lit) lit ## LL #endif +#define LL_MASK "ll" /* Firebird API has a couple of missing const decls in its API */ #define const_cast(s) ((char*)(s)) |