diff options
author | Frank M. Kromann <fmk@php.net> | 2003-07-03 16:53:04 +0000 |
---|---|---|
committer | Frank M. Kromann <fmk@php.net> | 2003-07-03 16:53:04 +0000 |
commit | d77e8393cdd817f0ca8d0c07c0beed95d7ba75b0 (patch) | |
tree | f30cd16c6bca2287202b13ce697d1ece9a06c3ef /ext/fbsql/php_fbsql.h | |
parent | d7e14ad8a3f0c2f4b5f4820ec3caca7be59a9b71 (diff) | |
download | php-git-d77e8393cdd817f0ca8d0c07c0beed95d7ba75b0.tar.gz |
Change fetch functions and protos so they make more sense.
fetch_row or fetch_assoc should not take the optional parameter
Diffstat (limited to 'ext/fbsql/php_fbsql.h')
-rw-r--r-- | ext/fbsql/php_fbsql.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/fbsql/php_fbsql.h b/ext/fbsql/php_fbsql.h index 38a8a04fb1..eea283df4c 100644 --- a/ext/fbsql/php_fbsql.h +++ b/ext/fbsql/php_fbsql.h @@ -101,7 +101,7 @@ PHP_FUNCTION(fbsql_warnings); PHP_FUNCTION(fbsql_get_autostart_info); /* PHP_FUNCTION(fbsql_set_autostart_info); */ -static void php_fbsql_fetch_hash(INTERNAL_FUNCTION_PARAMETERS, int result_type); +static void php_fbsql_fetch_hash(INTERNAL_FUNCTION_PARAMETERS, int result_type, int expected_args); static void php_fbsql_do_connect(INTERNAL_FUNCTION_PARAMETERS, int persistent); ZEND_BEGIN_MODULE_GLOBALS(fbsql) |