summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ext/dbplus/php_dbplus.c2
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;
}