summaryrefslogtreecommitdiff
path: root/ext/mysqli/tests/013.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/mysqli/tests/013.phpt')
-rw-r--r--ext/mysqli/tests/013.phpt2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/mysqli/tests/013.phpt b/ext/mysqli/tests/013.phpt
index dafc9bba9b..b095419199 100644
--- a/ext/mysqli/tests/013.phpt
+++ b/ext/mysqli/tests/013.phpt
@@ -23,7 +23,7 @@ mysqli fetch mixed / mysql_query
$stmt = mysqli_prepare($link, "SELECT * FROM test_bind_result");
$c = array(0,0,0,0,0,0,0,0);
- mysqli_bind_result($stmt, &$c[0], &$c[1], &$c[2], &$c[3], &$c[4], &$c[5], &$c[6], &$c[7]);
+ mysqli_bind_result($stmt, $c[0], $c[1], $c[2], $c[3], $c[4], $c[5], $c[6], $c[7]);
mysqli_execute($stmt);
mysqli_fetch($stmt);
mysqli_fetch($stmt);