From 4cd5db922b45b4e4b3e0fb042a5ed13ac2f7efd0 Mon Sep 17 00:00:00 2001 From: Andrey Hristov Date: Mon, 31 May 2010 16:53:33 +0000 Subject: [PATCH] Fix test --- ext/mysqli/tests/mysqli_stmt_affected_rows.phpt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/mysqli/tests/mysqli_stmt_affected_rows.phpt b/ext/mysqli/tests/mysqli_stmt_affected_rows.phpt index 4765d64872..b8dd11a699 100644 --- a/ext/mysqli/tests/mysqli_stmt_affected_rows.phpt +++ b/ext/mysqli/tests/mysqli_stmt_affected_rows.phpt @@ -99,7 +99,7 @@ require_once('skipifconnectfailure.inc'); if (!($res = mysqli_query($link, "SELECT count(id) AS num FROM test")) || !($tmp = mysqli_fetch_assoc($res))) - printf("[017] [%d] %s\n", mysqli_errnor($link), mysqli_error($link)); + printf("[017] [%d] %s\n", mysqli_error($link), mysqli_error($link)); $num = (int)$tmp['num']; mysqli_free_result($res); -- 2.40.0