helly Sat Jan 8 08:36:18 2005 EDT Modified files: /php-src/ext/mysqli mysqli_exception.c Log: - Fix shared build http://cvs.php.net/diff.php/php-src/ext/mysqli/mysqli_exception.c?r1=1.2&r2=1.3&ty=u Index: php-src/ext/mysqli/mysqli_exception.c diff -u php-src/ext/mysqli/mysqli_exception.c:1.2 php-src/ext/mysqli/mysqli_exception.c:1.3 --- php-src/ext/mysqli/mysqli_exception.c:1.2 Fri Jan 7 11:24:51 2005 +++ php-src/ext/mysqli/mysqli_exception.c Sat Jan 8 08:36:17 2005 @@ -42,7 +42,7 @@ 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)) {
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php