summaryrefslogtreecommitdiff
path: root/python/libxml_wrap.h
diff options
context:
space:
mode:
authorDaniel Veillard <veillard@src.gnome.org>2003-12-04 12:31:49 +0000
committerDaniel Veillard <veillard@src.gnome.org>2003-12-04 12:31:49 +0000
commit6cbd6c0738efb6c55d08f39c0731d46d678858fa (patch)
treefdd3e77eca960c9812525e0ce25871458d21297b /python/libxml_wrap.h
parent7c5f5868442a99fb599fcebe23533c35fa15c4a5 (diff)
downloadlibxml2-6cbd6c0738efb6c55d08f39c0731d46d678858fa.tar.gz
cleanup the output buffer support to at least get the basic to work fixes
* python/generator.py python/libxml.c python/libxml_wrap.h: cleanup the output buffer support to at least get the basic to work * python/tests/outbuf.py python/tests/serialize.py: fixes and cleanup. * include/libxml/xmlwriter.h: cleanup Daniel
Diffstat (limited to 'python/libxml_wrap.h')
-rw-r--r--python/libxml_wrap.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/python/libxml_wrap.h b/python/libxml_wrap.h
index 260e6b42..064f8a8f 100644
--- a/python/libxml_wrap.h
+++ b/python/libxml_wrap.h
@@ -113,7 +113,7 @@ typedef struct {
} PyoutputBuffer_Object;
#define PyoutputBuffer_Get(v) (((v) == Py_None) ? NULL : \
- (((PyURI_Object *)(v))->obj))
+ (((PyoutputBuffer_Object *)(v))->obj))
typedef struct {
PyObject_HEAD
@@ -121,7 +121,7 @@ typedef struct {
} PyinputBuffer_Object;
#define PyinputBuffer_Get(v) (((v) == Py_None) ? NULL : \
- (((PyURI_Object *)(v))->obj))
+ (((PyinputBuffer_Object *)(v))->obj))
typedef struct {
PyObject_HEAD