diff options
| author | Frederic Peters <fpeters@entrouvert.com> | 2004-07-15 10:42:38 +0000 |
|---|---|---|
| committer | Frederic Peters <fpeters@entrouvert.com> | 2004-07-15 10:42:38 +0000 |
| commit | 2b209ad4bd58e1f9480a671bbc82e36e3950d6c1 (patch) | |
| tree | b03cc3cf3b584d8a07150a245c2f73a0a707b9f3 /python | |
| parent | 4c6de60cca9603de5fd58655e0e8bc1a01c830ae (diff) | |
| download | lasso-2b209ad4bd58e1f9480a671bbc82e36e3950d6c1.tar.gz lasso-2b209ad4bd58e1f9480a671bbc82e36e3950d6c1.tar.xz lasso-2b209ad4bd58e1f9480a671bbc82e36e3950d6c1.zip | |
replaced C++ // comments with C /* */ comments before we fall on a pre-C99
compiler.
Diffstat (limited to 'python')
| -rw-r--r-- | python/wrap_objs.c | 2 |
1 files changed, 1 insertions, 1 deletions
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); } |
