diff options
author | Antony Dovgal <tony2001@php.net> | 2005-12-17 16:07:47 +0000 |
---|---|---|
committer | Antony Dovgal <tony2001@php.net> | 2005-12-17 16:07:47 +0000 |
commit | bfb72e0c086611a4418d159a97c2bbae45326c1c (patch) | |
tree | 25045d44651b978d96b114daa1a02b8d4ce1e5f3 /ext/sqlite/php_sqlite.h | |
parent | 905007669d9d4d051726ec373037e74821b1fa4f (diff) | |
download | php-git-bfb72e0c086611a4418d159a97c2bbae45326c1c.tar.gz |
change int to long and fix valgrind warnings
Diffstat (limited to 'ext/sqlite/php_sqlite.h')
-rw-r--r-- | ext/sqlite/php_sqlite.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/sqlite/php_sqlite.h b/ext/sqlite/php_sqlite.h index 4a27d1e6e5..03cdfca51d 100644 --- a/ext/sqlite/php_sqlite.h +++ b/ext/sqlite/php_sqlite.h @@ -93,7 +93,7 @@ PHP_FUNCTION(sqlite_factory); PHP_FUNCTION(sqlite_fetch_column_types); ZEND_BEGIN_MODULE_GLOBALS(sqlite) - int assoc_case; + long assoc_case; ZEND_END_MODULE_GLOBALS(sqlite) #ifdef ZTS |