diff options
author | Xinchen Hui <laruence@gmail.com> | 2014-04-23 10:58:08 +0800 |
---|---|---|
committer | Xinchen Hui <laruence@gmail.com> | 2014-04-23 10:58:08 +0800 |
commit | bd9f5755172e0c73153a1286480b0e2a31908d7f (patch) | |
tree | ce88e7c658d22b1f00a6b77633b5ad421d61ff4d /ext/sqlite3/php_sqlite3_structs.h | |
parent | 7e424f5a959885940131af778334cbd5d9a3cef5 (diff) | |
download | php-git-bd9f5755172e0c73153a1286480b0e2a31908d7f.tar.gz |
Clean up (use zend_string and foreach macros)
Diffstat (limited to 'ext/sqlite3/php_sqlite3_structs.h')
-rw-r--r-- | ext/sqlite3/php_sqlite3_structs.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/ext/sqlite3/php_sqlite3_structs.h b/ext/sqlite3/php_sqlite3_structs.h index dd81317df2..e988ac20d0 100644 --- a/ext/sqlite3/php_sqlite3_structs.h +++ b/ext/sqlite3/php_sqlite3_structs.h @@ -39,10 +39,8 @@ /* Structure for SQLite Statement Parameter. */ struct php_sqlite3_bound_param { long param_number; - char *name; - int name_len; + zend_string *name; long type; - zval parameter; }; |