summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArd Biesheuvel <abies@php.net>2005-02-21 13:57:02 +0000
committerArd Biesheuvel <abies@php.net>2005-02-21 13:57:02 +0000
commitbafbe90392f95af4c6ad7175a6799238ff1cc870 (patch)
treecf20af143f2ba57637724ce07a91abbeb1a2ba0c
parent01c0d589ef118c776a57c5fb871b4160a82cd349 (diff)
downloadphp-git-bafbe90392f95af4c6ad7175a6799238ff1cc870.tar.gz
Fixed PECL bug #3527: Missing quotation marks in php_pdo_firebird_int.h
-rw-r--r--ext/pdo_firebird/php_pdo_firebird_int.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/pdo_firebird/php_pdo_firebird_int.h b/ext/pdo_firebird/php_pdo_firebird_int.h
index 7e0e2e66a8..39213c5bf4 100644
--- a/ext/pdo_firebird/php_pdo_firebird_int.h
+++ b/ext/pdo_firebird/php_pdo_firebird_int.h
@@ -34,7 +34,7 @@
#define SHORT_MAX (1 << (8*sizeof(short)-1))
#if SIZEOF_LONG == 8
-# define LL_MASK l
+# define LL_MASK "l"
# define LL_LIT(lit) lit ## L
#else
# ifdef PHP_WIN32