Fixed error message (%s -> %v)

This commit is contained in:
Felipe Pena 2008-03-19 14:00:46 +00:00
parent 6089f98338
commit 2f777042a0

View File

@ -705,7 +705,7 @@ static union _zend_function *spl_recursive_it_get_method(zval **object_ptr, zstr
zval *zobj;
if (!object->iterators) {
php_error_docref(NULL TSRMLS_CC, E_ERROR, "The %s instance wasn't initialized properly", Z_OBJCE_PP(object_ptr)->name);
php_error_docref(NULL TSRMLS_CC, E_ERROR, "The %v instance wasn't initialized properly", Z_OBJCE_PP(object_ptr)->name);
}
zobj = object->iterators[level].zobject;