From 617ab865a0ce1c9970abdb3559d9099c25502746 Mon Sep 17 00:00:00 2001 From: Antony Dovgal Date: Fri, 1 Aug 2008 08:27:56 +0000 Subject: MFH: fix int<->long mess causing lots of segfaults on x86_64 --- ext/sqlite3/php_sqlite3_structs.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ext/sqlite3/php_sqlite3_structs.h') 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; }; -- cgit v1.2.1