From b67dcfb9e6bd3ea329bb04875764879a2e7f9cd0 Mon Sep 17 00:00:00 2001 From: Frederic Peters Date: Tue, 29 Apr 2008 12:01:42 +0000 Subject: [project @ fpeters@0d.be-20071005155511-13lg9tc7usfht3ud] minimalistic functional module $ python -c 'import lasso; print lasso.Samlp2AuthnRequest().dump()' Original author: Frederic Peters Date: 2007-10-05 17:55:11.508000+02:00 --- bindings/lang_python_wrapper_top.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'bindings/lang_python_wrapper_top.c') diff --git a/bindings/lang_python_wrapper_top.c b/bindings/lang_python_wrapper_top.c index 6c5f74a2..255087c3 100644 --- a/bindings/lang_python_wrapper_top.c +++ b/bindings/lang_python_wrapper_top.c @@ -28,7 +28,7 @@ PyGObjectPtr_New(GObject *obj) return Py_None; } - self = (PyGObjectPtr*)g_object_get_qdata(obj, lasso_wrapper_key) + self = (PyGObjectPtr*)g_object_get_qdata(obj, lasso_wrapper_key); if (self != NULL) { Py_INCREF(self); } else { @@ -40,7 +40,7 @@ PyGObjectPtr_New(GObject *obj) } static PyTypeObject PyGObjectPtrType = { - PyObject_HEAD_INIT(NULL), + PyObject_HEAD_INIT(NULL) 0, /* ob_size */ "_lasso.PyGObjectPtr", /* tp_name */ sizeof(PyGObjectPtr), /* tp_basicsize */ -- cgit