helly           Mon Mar  6 10:56:42 2006 UTC

  Modified files:              (Branch: PHP_5_1)
    /php-src/ext/spl    spl_iterators.c 
  Log:
  - Fix last %v, too
  
http://cvs.php.net/viewcvs.cgi/php-src/ext/spl/spl_iterators.c?r1=1.73.2.25&r2=1.73.2.26&diff_format=u
Index: php-src/ext/spl/spl_iterators.c
diff -u php-src/ext/spl/spl_iterators.c:1.73.2.25 
php-src/ext/spl/spl_iterators.c:1.73.2.26
--- php-src/ext/spl/spl_iterators.c:1.73.2.25   Mon Mar  6 10:09:13 2006
+++ php-src/ext/spl/spl_iterators.c     Mon Mar  6 10:56:41 2006
@@ -16,7 +16,7 @@
    +----------------------------------------------------------------------+
  */
 
-/* $Id: spl_iterators.c,v 1.73.2.25 2006/03/06 10:09:13 helly Exp $ */
+/* $Id: spl_iterators.c,v 1.73.2.26 2006/03/06 10:56:41 helly Exp $ */
 
 #ifdef HAVE_CONFIG_H
 # include "config.h"
@@ -817,7 +817,7 @@
 
 #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; \
        }

-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to