diff options
Diffstat (limited to 'ext/mysqli/mysqli_exception.c')
-rw-r--r-- | ext/mysqli/mysqli_exception.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/mysqli/mysqli_exception.c b/ext/mysqli/mysqli_exception.c index 16e66e5f60..f813c6e65c 100644 --- a/ext/mysqli/mysqli_exception.c +++ b/ext/mysqli/mysqli_exception.c @@ -42,7 +42,7 @@ void php_mysqli_throw_sql_exception(char *sqlstate, int errorno TSRMLS_DC, char char *message; va_start(arg, format); - zend_vspprintf(&message, 0, format, arg); + vspprintf(&message, 0, format, arg); va_end(arg);; if (!(MyG(report_mode) & MYSQLI_REPORT_STRICT)) { |