Remove superfluous semicolons

This commit is contained in:
Tom Van Looy 2017-06-25 23:24:23 +02:00 committed by Nikita Popov
parent b3849edf2c
commit 04fb3f28ff
52 changed files with 67 additions and 67 deletions

View file

@ -44,7 +44,7 @@ void php_mysqli_throw_sql_exception(char *sqlstate, int errorno, char *format, .
va_start(arg, format);
vspprintf(&message, 0, format, arg);
va_end(arg);;
va_end(arg);
if (!(MyG(report_mode) & MYSQLI_REPORT_STRICT)) {
php_error_docref(NULL, E_WARNING, "(%s/%d): %s", sqlstate, errorno, message);