From a30442c1c8cbd718ffb83911fac87ed099b25508 Mon Sep 17 00:00:00 2001 From: Xinchen Hui Date: Wed, 23 Apr 2014 11:41:57 +0800 Subject: Refactor pdo_sqlite (only compilable) --- ext/pdo_sqlite/php_pdo_sqlite_int.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ext/pdo_sqlite/php_pdo_sqlite_int.h') diff --git a/ext/pdo_sqlite/php_pdo_sqlite_int.h b/ext/pdo_sqlite/php_pdo_sqlite_int.h index 288cc6335e..188856a3d1 100644 --- a/ext/pdo_sqlite/php_pdo_sqlite_int.h +++ b/ext/pdo_sqlite/php_pdo_sqlite_int.h @@ -38,7 +38,7 @@ struct pdo_sqlite_fci { struct pdo_sqlite_func { struct pdo_sqlite_func *next; - zval *func, *step, *fini; + zval func, step, fini; int argc; const char *funcname; @@ -50,7 +50,7 @@ struct pdo_sqlite_collation { struct pdo_sqlite_collation *next; const char *name; - zval *callback; + zval callback; struct pdo_sqlite_fci fc; }; -- cgit v1.2.1