diff options
author | Marcus Boerger <helly@php.net> | 2005-01-08 13:36:17 +0000 |
---|---|---|
committer | Marcus Boerger <helly@php.net> | 2005-01-08 13:36:17 +0000 |
commit | 01d6db92fc323814939cb5799b5d7fff6744fef4 (patch) | |
tree | 15552e64415ce8ff3e1a0f0605e6f19855af46ba /ext/mysqli/mysqli_exception.c | |
parent | 8045f834d4090d15b9f495afa69ab0c4378a1493 (diff) | |
download | php-git-01d6db92fc323814939cb5799b5d7fff6744fef4.tar.gz |
- Fix shared build
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)) { |