]> granicus.if.org Git - php/commitdiff
- Fix last %v, too
authorMarcus Boerger <helly@php.net>
Mon, 6 Mar 2006 10:56:41 +0000 (10:56 +0000)
committerMarcus Boerger <helly@php.net>
Mon, 6 Mar 2006 10:56:41 +0000 (10:56 +0000)
ext/spl/spl_iterators.c

index 533223d48be647e20591051b8c9698d69660264a..719f261d6f522337e337e9476018bd52dff6fd93 100755 (executable)
@@ -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; \
        }