Skip to content

Commit

Permalink
Remove now unnecessary @ operator
Browse files Browse the repository at this point in the history
  • Loading branch information
Girgias committed Jul 19, 2019
1 parent 43404b8 commit 3067187
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ext/mysqli/tests/mysqli_multi_query.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ require_once('skipifconnectfailure.inc');

mysqli_free_result($res);

} while (@mysqli_next_result($link));
} while (mysqli_next_result($link));

if ($res_num != 4)
printf("[015] Expecting 3 result sets got %d result set[s]\n", $res_num);
Expand Down

0 comments on commit 3067187

Please sign in to comment.