diff options
author | Xinchen Hui <laruence@gmail.com> | 2014-04-23 11:41:57 +0800 |
---|---|---|
committer | Xinchen Hui <laruence@gmail.com> | 2014-04-23 11:41:57 +0800 |
commit | a30442c1c8cbd718ffb83911fac87ed099b25508 (patch) | |
tree | 37f3ebe751d02226e617cd9f33364abd2ce22443 /ext/pdo_sqlite/php_pdo_sqlite_int.h | |
parent | bd9f5755172e0c73153a1286480b0e2a31908d7f (diff) | |
download | php-git-a30442c1c8cbd718ffb83911fac87ed099b25508.tar.gz |
Refactor pdo_sqlite (only compilable)
Diffstat (limited to 'ext/pdo_sqlite/php_pdo_sqlite_int.h')
-rw-r--r-- | ext/pdo_sqlite/php_pdo_sqlite_int.h | 4 |
1 files changed, 2 insertions, 2 deletions
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; }; |