Fix type in proto

This commit is contained in:
Sara Golemon
2007-10-30 23:00:55 +00:00
parent 579cf1e224
commit ab7c9a9c1d

View File

@@ -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 */