diff options
author | Hartmut Holzgraefe <hholzgra@php.net> | 2001-09-18 20:42:37 +0000 |
---|---|---|
committer | Hartmut Holzgraefe <hholzgra@php.net> | 2001-09-18 20:42:37 +0000 |
commit | d330072db93e1e34cd1194c6f74a0ac4b69a3752 (patch) | |
tree | f2d381ef88f4db0c22f7bb7cc298ca99b43dda03 /ext | |
parent | 563c0670e5326135a470909bcb8a7a3486a1ae14 (diff) | |
download | php-git-d330072db93e1e34cd1194c6f74a0ac4b69a3752.tar.gz |
argument count fix
Diffstat (limited to 'ext')
-rw-r--r-- | ext/dbplus/php_dbplus.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/dbplus/php_dbplus.c b/ext/dbplus/php_dbplus.c index 2c33740563..a53cb2df77 100644 --- a/ext/dbplus/php_dbplus.c +++ b/ext/dbplus/php_dbplus.c @@ -1140,7 +1140,7 @@ PHP_FUNCTION(dbplus_rquery) zval **name, **dbpath; int argc; - if (argc <1 || argc>2 || zend_get_parameters_ex(1, &name, &dbpath) == FAILURE){ + if ((argc <1) || (argc>2) || (zend_get_parameters_ex(2, &name, &dbpath) == FAILURE)){ WRONG_PARAM_COUNT; } |