mirror of
https://github.com/php/pecl-database-pdo_user.git
synced 2026-03-23 22:42:10 +01:00
Fix type in proto
This commit is contained in:
@@ -292,7 +292,7 @@ PHP_METHOD(pdo_user,tokenname)
|
||||
/* }}} */
|
||||
|
||||
static void *pdo_user_malloc_wrapper(size_t x) { return emalloc(x); }
|
||||
static void pdo_user_free_wrapper(size_t x) { efree(x); }
|
||||
static void pdo_user_free_wrapper(void *x) { efree(x); }
|
||||
|
||||
/* {{{ proto array PDO_User::parseSQL(string sql)
|
||||
Compile a SQL statement into a query structure */
|
||||
|
||||
Reference in New Issue
Block a user