summaryrefslogtreecommitdiff
path: root/ext/pdo_sqlite/php_pdo_sqlite_int.h
diff options
context:
space:
mode:
Diffstat (limited to 'ext/pdo_sqlite/php_pdo_sqlite_int.h')
-rw-r--r--ext/pdo_sqlite/php_pdo_sqlite_int.h4
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;
};