From 264cec8be641d1c2ea0c95d915d506c4fdbc751a Mon Sep 17 00:00:00 2001 From: Andrei Zmievski Date: Thu, 11 Aug 2005 23:36:07 +0000 Subject: Unicode support. --- ext/sqlite/sqlite.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ext/sqlite/sqlite.c') diff --git a/ext/sqlite/sqlite.c b/ext/sqlite/sqlite.c index e3c58ccae4..e164634123 100644 --- a/ext/sqlite/sqlite.c +++ b/ext/sqlite/sqlite.c @@ -2082,7 +2082,7 @@ PHP_FUNCTION(sqlite_fetch_object) fcc.object_pp = &return_value; if (zend_call_function(&fci, &fcc TSRMLS_CC) == FAILURE) { - zend_throw_exception_ex(sqlite_ce_exception, 0 TSRMLS_CC, "Could not execute %s::%s()", class_name, ce->constructor->common.function_name); + zend_throw_exception_ex(sqlite_ce_exception, 0 TSRMLS_CC, "Could not execute %s::%v()", class_name, ce->constructor->common.function_name); } else { if (retval_ptr) { zval_ptr_dtor(&retval_ptr); -- cgit v1.2.1