chiark / gitweb /
systemd-python: wrap sd_journal_add_conjunction
[elogind.git] / src / python-systemd / id128.c
index 865cc3ce22926e113d5428986272b1f5d511ddde..1c2fe5dd0b2fa4cc62d8f16f18e07b493d289b77 100644 (file)
@@ -52,9 +52,9 @@ PyDoc_STRVAR(get_boot__doc__,
 );
 
 static PyObject* make_uuid(sd_id128_t id) {
-        PyObject _cleanup_Py_DECREF_
+        _cleanup_Py_DECREF_ PyObject
                 *uuid = NULL, *UUID = NULL, *bytes = NULL,
-                *args = NULL, *kwargs = NULL, *obj = NULL;
+                *args = NULL, *kwargs = NULL;
 
         uuid = PyImport_ImportModule("uuid");
         if (!uuid)