From: Marcus Boerger Date: Mon, 6 Mar 2006 10:56:41 +0000 (+0000) Subject: - Fix last %v, too X-Git-Tag: php-5.1.3RC1~21 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=dc8221c154a18fbf1bab505c1f7082d034619b3a;p=php - Fix last %v, too --- diff --git a/ext/spl/spl_iterators.c b/ext/spl/spl_iterators.c index 533223d48b..719f261d6f 100755 --- a/ext/spl/spl_iterators.c +++ b/ext/spl/spl_iterators.c @@ -817,7 +817,7 @@ int spl_dual_it_call_method(char *method, INTERNAL_FUNCTION_PARAMETERS) #define SPL_CHECK_CTOR(intern, classname) \ if (intern->dit_type == DIT_Unknown) { \ - zend_throw_exception_ex(spl_ce_BadMethodCallException, 0 TSRMLS_CC, "Classes derived from %v must call %s::__construct()", \ + zend_throw_exception_ex(spl_ce_BadMethodCallException, 0 TSRMLS_CC, "Classes derived from %s must call %s::__construct()", \ (spl_ce_##classname)->name, (spl_ce_##classname)->name); \ return; \ }