summaryrefslogtreecommitdiff
path: root/Zend/zend_exceptions.c
diff options
context:
space:
mode:
authorAntony Dovgal <tony2001@php.net>2006-05-18 21:24:04 +0000
committerAntony Dovgal <tony2001@php.net>2006-05-18 21:24:04 +0000
commit80d7ac0e9e5283a755ff555ecbd1bec6fb06d45f (patch)
tree0136651ed26f7bff9d05e06a500da5c408ea62a3 /Zend/zend_exceptions.c
parent749f4ac2ab56290317f0020010e2e558196bde10 (diff)
downloadphp-git-80d7ac0e9e5283a755ff555ecbd1bec6fb06d45f.tar.gz
there is no %v in 5.2
Diffstat (limited to 'Zend/zend_exceptions.c')
-rw-r--r--Zend/zend_exceptions.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Zend/zend_exceptions.c b/Zend/zend_exceptions.c
index aca3ea9310..0d40e01eae 100644
--- a/Zend/zend_exceptions.c
+++ b/Zend/zend_exceptions.c
@@ -686,7 +686,7 @@ ZEND_API void zend_exception_error(zval *exception TSRMLS_DC)
file = NULL;
line = NULL;
}
- zend_error_va(E_WARNING, file ? Z_STRVAL_P(file) : NULL, line ? Z_LVAL_P(line) : 0, "Uncaught %v in exception handling during call to %v::__tostring()", Z_OBJCE_P(EG(exception))->name, ce_exception->name);
+ zend_error_va(E_WARNING, file ? Z_STRVAL_P(file) : NULL, line ? Z_LVAL_P(line) : 0, "Uncaught %s in exception handling during call to %s::__tostring()", Z_OBJCE_P(EG(exception))->name, ce_exception->name);
}
str = zend_read_property(default_exception_ce, exception, "string", sizeof("string")-1, 1 TSRMLS_CC);