summaryrefslogtreecommitdiff
path: root/gi/pygtype.c
diff options
context:
space:
mode:
Diffstat (limited to 'gi/pygtype.c')
-rw-r--r--gi/pygtype.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gi/pygtype.c b/gi/pygtype.c
index e1fb4e66..fb212829 100644
--- a/gi/pygtype.c
+++ b/gi/pygtype.c
@@ -946,7 +946,7 @@ gclosure_from_pyfunc(PyGObject *object, PyObject *func)
PyGClosure *pyclosure = l->data;
int res = PyObject_RichCompareBool(pyclosure->callback, func, Py_EQ);
if (res == -1) {
- PyErr_Clear(); // Is there anything else to do?
+ PyErr_Clear(); /* Is there anything else to do? */
} else if (res) {
return (GClosure*)pyclosure;
}