diff options
author | Ard Biesheuvel <abies@php.net> | 2004-02-22 12:10:00 +0000 |
---|---|---|
committer | Ard Biesheuvel <abies@php.net> | 2004-02-22 12:10:00 +0000 |
commit | 3a91737c73072bd86f04148692b78a7ce88e41ee (patch) | |
tree | a088cbc8e2341c5be1f4a5868edf169dd62bcf19 /ext/sqlite/sqlite.c | |
parent | 990fcad9b04352656ac694d8a20e95cc3a9cdf3e (diff) | |
download | php-git-3a91737c73072bd86f04148692b78a7ce88e41ee.tar.gz |
Fix 64-bit crash
Diffstat (limited to 'ext/sqlite/sqlite.c')
-rw-r--r-- | ext/sqlite/sqlite.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/sqlite/sqlite.c b/ext/sqlite/sqlite.c index 33826d2659..56ae25440e 100644 --- a/ext/sqlite/sqlite.c +++ b/ext/sqlite/sqlite.c @@ -2593,7 +2593,7 @@ PHP_FUNCTION(sqlite_prev) PHP_FUNCTION(sqlite_escape_string) { char *string = NULL; - long stringlen; + int stringlen; char *ret; if (FAILURE == zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s", &string, &stringlen)) { |