1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2025-07-17 18:21:05 +03:00

stupid bug found by mattam@netcourrier.com Daniel

* python/libxml_wrap.h: stupid bug found by mattam@netcourrier.com
Daniel
This commit is contained in:
Daniel Veillard
2002-09-17 19:25:28 +00:00
parent 9272704ba4
commit 63b01c2da1
2 changed files with 5 additions and 1 deletions

View File

@ -81,7 +81,7 @@ typedef struct {
/* FILE * have their own internal representation */
#define PyFile_Get(v) (((v) == Py_None) ? NULL : \
(PyFile_Check(v) ? NULL : (PyFile_AsFile(v))))
(PyFile_Check(v) ? (PyFile_AsFile(v)) : NULL))
PyObject * libxml_intWrap(int val);