From 2b209ad4bd58e1f9480a671bbc82e36e3950d6c1 Mon Sep 17 00:00:00 2001 From: Frederic Peters Date: Thu, 15 Jul 2004 10:42:38 +0000 Subject: replaced C++ // comments with C /* */ comments before we fall on a pre-C99 compiler. --- python/wrap_objs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'python') diff --git a/python/wrap_objs.c b/python/wrap_objs.c index 793cb66c..74d136b1 100644 --- a/python/wrap_objs.c +++ b/python/wrap_objs.c @@ -79,7 +79,7 @@ PyObject *xmlCharPtr_wrap(xmlChar *str) { } ret = PyString_FromString((char *) str); /* deallocation */ - //xmlFree(str); + /* xmlFree(str); */ return (ret); } -- cgit