diff options
Diffstat (limited to 'ext/mysqli/tests/005.phpt')
-rw-r--r-- | ext/mysqli/tests/005.phpt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/mysqli/tests/005.phpt b/ext/mysqli/tests/005.phpt index 5688770fe0..982a3950f2 100644 --- a/ext/mysqli/tests/005.phpt +++ b/ext/mysqli/tests/005.phpt @@ -17,7 +17,7 @@ mysqli fetch char/text long mysqli_query($link, "INSERT INTO test_bind_fetch VALUES ('1234567890', '$a')"); $stmt = mysqli_prepare($link, "SELECT * FROM test_bind_fetch"); - mysqli_bind_result($stmt, &$c1, &$c2); + mysqli_bind_result($stmt, $c1, $c2); mysqli_execute($stmt); mysqli_fetch($stmt); |