diff options
author | Nikita Popov <nikita.ppv@gmail.com> | 2020-02-03 13:41:31 +0100 |
---|---|---|
committer | Nikita Popov <nikita.ppv@gmail.com> | 2020-02-03 13:41:31 +0100 |
commit | 58b17906f512866c2e34844fa497ecdf7f1e1e3d (patch) | |
tree | fcfa56bc040ec99990610dba890b72ef4d560663 /ext/sqlite3 | |
parent | 4fd63185803aad42790c0ac38c144b346e283009 (diff) | |
download | php-git-58b17906f512866c2e34844fa497ecdf7f1e1e3d.tar.gz |
Apply tidy formatting
Mostly reindent PHP scripts to spaces.
Diffstat (limited to 'ext/sqlite3')
-rw-r--r-- | ext/sqlite3/sqlite3.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/sqlite3/sqlite3.c b/ext/sqlite3/sqlite3.c index 1c337ee6cb..910181a3b7 100644 --- a/ext/sqlite3/sqlite3.c +++ b/ext/sqlite3/sqlite3.c @@ -322,7 +322,7 @@ PHP_METHOD(sqlite3, enableExtendedResultCodes) int ret; SQLITE3_CHECK_INITIALIZED(db_obj, db_obj->db, SQLite3) - + if (zend_parse_parameters(ZEND_NUM_ARGS(), "|b", &enable) == FAILURE) { return; } |