diff options
author | Anatol Belski <ab@php.net> | 2014-08-19 12:04:15 +0200 |
---|---|---|
committer | Anatol Belski <ab@php.net> | 2014-08-19 12:04:15 +0200 |
commit | acdda1093bfc21af1a710977a6f8eabc8b0bdbf1 (patch) | |
tree | b88424f43e3b60803b475d718d15ce38662d5532 /ext/sqlite3/php_sqlite3_structs.h | |
parent | 094a78eb6930901bc64923b310ab9b5d2f78aa56 (diff) | |
download | php-git-acdda1093bfc21af1a710977a6f8eabc8b0bdbf1.tar.gz |
ported ext/sqlite3
Diffstat (limited to 'ext/sqlite3/php_sqlite3_structs.h')
-rw-r--r-- | ext/sqlite3/php_sqlite3_structs.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/sqlite3/php_sqlite3_structs.h b/ext/sqlite3/php_sqlite3_structs.h index e988ac20d0..a75b340e2c 100644 --- a/ext/sqlite3/php_sqlite3_structs.h +++ b/ext/sqlite3/php_sqlite3_structs.h @@ -38,9 +38,9 @@ /* Structure for SQLite Statement Parameter. */ struct php_sqlite3_bound_param { - long param_number; + php_int_t param_number; zend_string *name; - long type; + php_int_t type; zval parameter; }; @@ -91,7 +91,7 @@ static inline php_sqlite3_db_object *php_sqlite3_db_from_obj(zend_object *obj) { /* Structure for SQLite Database object. */ typedef struct _php_sqlite3_agg_context { zval zval_context; - long row_count; + php_int_t row_count; } php_sqlite3_agg_context; typedef struct _php_sqlite3_stmt_object php_sqlite3_stmt; |