mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
Convert initialised to bool
This commit is contained in:
parent
dbf7d4402c
commit
9ee08999f4
2 changed files with 10 additions and 10 deletions
|
@ -62,7 +62,7 @@ typedef struct _php_sqlite3_collation {
|
|||
|
||||
/* Structure for SQLite Database object. */
|
||||
typedef struct _php_sqlite3_db_object {
|
||||
int initialised;
|
||||
bool initialised;
|
||||
sqlite3 *db;
|
||||
php_sqlite3_func *funcs;
|
||||
php_sqlite3_collation *collations;
|
||||
|
@ -114,7 +114,7 @@ struct _php_sqlite3_stmt_object {
|
|||
sqlite3_stmt *stmt;
|
||||
php_sqlite3_db_object *db_obj;
|
||||
|
||||
int initialised;
|
||||
bool initialised;
|
||||
|
||||
/* Keep track of the zvals for bound parameters */
|
||||
HashTable *bound_params;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue