diff options
author | Ilia Alshanetsky <iliaa@php.net> | 2003-01-21 14:56:40 +0000 |
---|---|---|
committer | Ilia Alshanetsky <iliaa@php.net> | 2003-01-21 14:56:40 +0000 |
commit | 8a9e09a44a0959d6c3317085f5665095cb950074 (patch) | |
tree | edb3ada0102b4b42f5f632fcfddd1344b5bc6348 /ext/fbsql | |
parent | 832545d97ff7975adf0cf84e8b373b1d01391537 (diff) | |
download | php-git-8a9e09a44a0959d6c3317085f5665095cb950074.tar.gz |
ARG_COUNT(ht) -> ZEND_NUM_ARGS().
Diffstat (limited to 'ext/fbsql')
-rw-r--r-- | ext/fbsql/php_fbsql.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/fbsql/php_fbsql.c b/ext/fbsql/php_fbsql.c index 11786c7b30..bc1979dac5 100644 --- a/ext/fbsql/php_fbsql.c +++ b/ext/fbsql/php_fbsql.c @@ -2160,7 +2160,7 @@ PHP_FUNCTION(fbsql_errno) Enable or disable FrontBase warnings */ PHP_FUNCTION(fbsql_warnings) { - int argc = ARG_COUNT(ht); + int argc = ZEND_NUM_ARGS(); zval **argv[1]; if ((argc < 0) || (argc > 1)) WRONG_PARAM_COUNT; |