Skip to content

Commit 8bba2df

Browse files
committed
Fix misleading typo in identifiers
1 parent b74b325 commit 8bba2df

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
@@ -1923,14 +1923,14 @@ ZEND_BEGIN_ARG_INFO_EX(arginfo_sqlite3_createcollation, 0, 0, 2)
19231923
ZEND_ARG_INFO(0, callback)
19241924
ZEND_END_ARG_INFO()
19251925

1926-
ZEND_BEGIN_ARG_INFO_EX(argingo_sqlite3_openblob, 0, 0, 3)
1926+
ZEND_BEGIN_ARG_INFO_EX(arginfo_sqlite3_openblob, 0, 0, 3)
19271927
ZEND_ARG_INFO(0, table)
19281928
ZEND_ARG_INFO(0, column)
19291929
ZEND_ARG_INFO(0, rowid)
19301930
ZEND_ARG_INFO(0, dbname)
19311931
ZEND_END_ARG_INFO()
19321932

1933-
ZEND_BEGIN_ARG_INFO_EX(argingo_sqlite3_enableexceptions, 0, 0, 0)
1933+
ZEND_BEGIN_ARG_INFO_EX(arginfo_sqlite3_enableexceptions, 0, 0, 0)
19341934
ZEND_ARG_INFO(0, enableExceptions)
19351935
ZEND_END_ARG_INFO()
19361936

@@ -1987,8 +1987,8 @@ static zend_function_entry php_sqlite3_class_methods[] = {
19871987
PHP_ME(sqlite3, createFunction, arginfo_sqlite3_createfunction, ZEND_ACC_PUBLIC)
19881988
PHP_ME(sqlite3, createAggregate, arginfo_sqlite3_createaggregate, ZEND_ACC_PUBLIC)
19891989
PHP_ME(sqlite3, createCollation, arginfo_sqlite3_createcollation, ZEND_ACC_PUBLIC)
1990-
PHP_ME(sqlite3, openBlob, argingo_sqlite3_openblob, ZEND_ACC_PUBLIC)
1991-
PHP_ME(sqlite3, enableExceptions, argingo_sqlite3_enableexceptions, ZEND_ACC_PUBLIC)
1990+
PHP_ME(sqlite3, openBlob, arginfo_sqlite3_openblob, ZEND_ACC_PUBLIC)
1991+
PHP_ME(sqlite3, enableExceptions, arginfo_sqlite3_enableexceptions, ZEND_ACC_PUBLIC)
19921992
/* Aliases */
19931993
PHP_MALIAS(sqlite3, __construct, open, arginfo_sqlite3_open, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
19941994
PHP_FE_END

0 commit comments

Comments
 (0)