diff options
author | Antony Dovgal <tony2001@php.net> | 2008-08-01 08:27:56 +0000 |
---|---|---|
committer | Antony Dovgal <tony2001@php.net> | 2008-08-01 08:27:56 +0000 |
commit | 617ab865a0ce1c9970abdb3559d9099c25502746 (patch) | |
tree | 5cb173ed2c11a7d6f410e7c43fb45ad57d2b6945 /ext/sqlite3/php_sqlite3_structs.h | |
parent | f8f406208b96a9f83e2d1aa1c497255e0fe484c2 (diff) | |
download | php-git-617ab865a0ce1c9970abdb3559d9099c25502746.tar.gz |
MFH: fix int<->long mess causing lots of segfaults on x86_64
Diffstat (limited to 'ext/sqlite3/php_sqlite3_structs.h')
-rw-r--r-- | ext/sqlite3/php_sqlite3_structs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/sqlite3/php_sqlite3_structs.h b/ext/sqlite3/php_sqlite3_structs.h index e1f5254339..5ac70505db 100644 --- a/ext/sqlite3/php_sqlite3_structs.h +++ b/ext/sqlite3/php_sqlite3_structs.h @@ -41,7 +41,7 @@ struct php_sqlite3_bound_param { long param_number; char *name; int name_len; - int type; + long type; zval *parameter; }; |