diff options
author | foobar <sniper@php.net> | 2002-05-19 00:02:07 +0000 |
---|---|---|
committer | foobar <sniper@php.net> | 2002-05-19 00:02:07 +0000 |
commit | 3b9401a3ed9d636a6555f3bf2eac7263d450d2ca (patch) | |
tree | 6f9c839f7edf48ce6950abaabb46a2277e70513d /ext/domxml/php_domxml.c | |
parent | ccd962e1553faeadc4c2b70f9dcd92dbee085c56 (diff) | |
download | php-git-3b9401a3ed9d636a6555f3bf2eac7263d450d2ca.tar.gz |
DO NOT use C++ comments!
Diffstat (limited to 'ext/domxml/php_domxml.c')
-rw-r--r-- | ext/domxml/php_domxml.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/domxml/php_domxml.c b/ext/domxml/php_domxml.c index 6051fc973e..b23ca5508e 100644 --- a/ext/domxml/php_domxml.c +++ b/ext/domxml/php_domxml.c @@ -466,7 +466,7 @@ zend_module_entry domxml_module_entry = { PHP_RINIT(domxml), NULL, PHP_MINFO(domxml), - DOMXML_API_VERSION, //Extension versionnumber + DOMXML_API_VERSION, /* Extension versionnumber */ STANDARD_MODULE_PROPERTIES }; @@ -2096,7 +2096,7 @@ PHP_FUNCTION(domxml_node_append_sibling) RETURN_FALSE; } - // FIXME reverted xmlAddChildList; crashes + /* FIXME reverted xmlAddChildList; crashes */ child = xmlAddSibling(nodep, new_child); if (NULL == child) { |