diff options
author | Andrei Zmievski <andrei@php.net> | 2005-08-11 23:36:07 +0000 |
---|---|---|
committer | Andrei Zmievski <andrei@php.net> | 2005-08-11 23:36:07 +0000 |
commit | 264cec8be641d1c2ea0c95d915d506c4fdbc751a (patch) | |
tree | e9f980e16f707842248125cf22efabec782cfece /ext/dom/php_dom.h | |
parent | b80cb7bd2f721dad13a97a1300c6dc56934daaf7 (diff) | |
download | php-git-264cec8be641d1c2ea0c95d915d506c4fdbc751a.tar.gz |
Unicode support.
Diffstat (limited to 'ext/dom/php_dom.h')
-rw-r--r-- | ext/dom/php_dom.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/dom/php_dom.h b/ext/dom/php_dom.h index 9fa2f1770e..210d2cfe1b 100644 --- a/ext/dom/php_dom.h +++ b/ext/dom/php_dom.h @@ -119,7 +119,7 @@ entry = zend_register_internal_class_ex(&ce, parent_ce, NULL TSRMLS_CC); #define DOM_GET_OBJ(__ptr, __id, __prtype, __intern) { \ __intern = (dom_object *)zend_object_store_get_object(__id TSRMLS_CC); \ if (__intern->ptr == NULL || !(__ptr = (__prtype)((php_libxml_node_ptr *)__intern->ptr)->node)) { \ - php_error_docref(NULL TSRMLS_CC, E_WARNING, "Couldn't fetch %s", __intern->std.ce->name);\ + php_error_docref(NULL TSRMLS_CC, E_WARNING, "Couldn't fetch %v", __intern->std.ce->name);\ RETURN_NULL();\ } \ } |