Skip to content

Commit a334da8

Browse files
committed
Merge branch 'PHP-7.0' into PHP-7.1
* PHP-7.0: Fix misleading typo in identifiers
2 parents 8bbdbd0 + 8bba2df commit a334da8

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

ext/sqlite3/sqlite3.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1910,14 +1910,14 @@ ZEND_BEGIN_ARG_INFO_EX(arginfo_sqlite3_createcollation, 0, 0, 2)
19101910
ZEND_ARG_INFO(0, callback)
19111911
ZEND_END_ARG_INFO()
19121912

1913-
ZEND_BEGIN_ARG_INFO_EX(argingo_sqlite3_openblob, 0, 0, 3)
1913+
ZEND_BEGIN_ARG_INFO_EX(arginfo_sqlite3_openblob, 0, 0, 3)
19141914
ZEND_ARG_INFO(0, table)
19151915
ZEND_ARG_INFO(0, column)
19161916
ZEND_ARG_INFO(0, rowid)
19171917
ZEND_ARG_INFO(0, dbname)
19181918
ZEND_END_ARG_INFO()
19191919

1920-
ZEND_BEGIN_ARG_INFO_EX(argingo_sqlite3_enableexceptions, 0, 0, 0)
1920+
ZEND_BEGIN_ARG_INFO_EX(arginfo_sqlite3_enableexceptions, 0, 0, 0)
19211921
ZEND_ARG_INFO(0, enableExceptions)
19221922
ZEND_END_ARG_INFO()
19231923

@@ -1974,8 +1974,8 @@ static zend_function_entry php_sqlite3_class_methods[] = {
19741974
PHP_ME(sqlite3, createFunction, arginfo_sqlite3_createfunction, ZEND_ACC_PUBLIC)
19751975
PHP_ME(sqlite3, createAggregate, arginfo_sqlite3_createaggregate, ZEND_ACC_PUBLIC)
19761976
PHP_ME(sqlite3, createCollation, arginfo_sqlite3_createcollation, ZEND_ACC_PUBLIC)
1977-
PHP_ME(sqlite3, openBlob, argingo_sqlite3_openblob, ZEND_ACC_PUBLIC)
1978-
PHP_ME(sqlite3, enableExceptions, argingo_sqlite3_enableexceptions, ZEND_ACC_PUBLIC)
1977+
PHP_ME(sqlite3, openBlob, arginfo_sqlite3_openblob, ZEND_ACC_PUBLIC)
1978+
PHP_ME(sqlite3, enableExceptions, arginfo_sqlite3_enableexceptions, ZEND_ACC_PUBLIC)
19791979
/* Aliases */
19801980
PHP_MALIAS(sqlite3, __construct, open, arginfo_sqlite3_open, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
19811981
PHP_FE_END

0 commit comments

Comments
 (0)