mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00
Remove superfluous semicolons
This commit is contained in:
parent
b3849edf2c
commit
04fb3f28ff
52 changed files with 67 additions and 67 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue