Skip to content

Commit 1614acd

Browse files
committed
Fix a few more things
1 parent e143d96 commit 1614acd

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

ext/pdo/pdo_stmt.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1491,7 +1491,7 @@ PHP_METHOD(PDOStatement, bindValue)
14911491
memset(&param, 0, sizeof(param));
14921492
param.paramno = -1;
14931493

1494-
ZEND_PARSE_PARAMETERS_START(2, 5)
1494+
ZEND_PARSE_PARAMETERS_START(2, 3)
14951495
Z_PARAM_STR_OR_LONG(param.name, param.paramno)
14961496
Z_PARAM_ZVAL(parameter)
14971497
Z_PARAM_OPTIONAL

ext/standard/tests/file/chgrp.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@ try {
1313
echo $exception->getMessage() . "\n";
1414
}
1515
?>
16-
--EXPECT--
16+
--EXPECTF--
1717
Warning: chgrp(): No such file or directory in %s on line %d

ext/standard/tests/file/chown.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@ chown("sjhgfskhagkfdgskjfhgskfsdgfkdsajf", NULL);
1111
echo "ALIVE\n";
1212
?>
1313
--EXPECTF--
14-
Warning: chown(): No such file or directory in %s on %d
14+
Warning: chown(): No such file or directory in %s on line %d
1515
ALIVE

0 commit comments

Comments
 (0)