summaryrefslogtreecommitdiff
path: root/ext/fbsql
diff options
context:
space:
mode:
authorIlia Alshanetsky <iliaa@php.net>2003-01-21 14:56:40 +0000
committerIlia Alshanetsky <iliaa@php.net>2003-01-21 14:56:40 +0000
commit8a9e09a44a0959d6c3317085f5665095cb950074 (patch)
treeedb3ada0102b4b42f5f632fcfddd1344b5bc6348 /ext/fbsql
parent832545d97ff7975adf0cf84e8b373b1d01391537 (diff)
downloadphp-git-8a9e09a44a0959d6c3317085f5665095cb950074.tar.gz
ARG_COUNT(ht) -> ZEND_NUM_ARGS().
Diffstat (limited to 'ext/fbsql')
-rw-r--r--ext/fbsql/php_fbsql.c2
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;