diff options
Diffstat (limited to 'bindings/lang_python_wrapper_top.c')
| -rw-r--r-- | bindings/lang_python_wrapper_top.c | 4 |
1 files changed, 2 insertions, 2 deletions
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 */ |
