summaryrefslogtreecommitdiff
path: root/systemd
diff options
context:
space:
mode:
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2013-03-20 18:25:35 -0400
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2015-07-05 14:19:18 -0400
commit26b763337c48e7cd4481f7d7eabce34904d20e38 (patch)
tree7376a9a95f4b9fcc711fefbcf5bc6746184293b1 /systemd
parent9d63a706d7b76f53ff9f72336c2dce9ee91884c6 (diff)
downloadpython-systemd-26b763337c48e7cd4481f7d7eabce34904d20e38.tar.gz
Remove some unused variables
Diffstat (limited to 'systemd')
-rw-r--r--systemd/id128.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/systemd/id128.c b/systemd/id128.c
index 865cc3c..a9611c4 100644
--- a/systemd/id128.c
+++ b/systemd/id128.c
@@ -54,7 +54,7 @@ PyDoc_STRVAR(get_boot__doc__,
static PyObject* make_uuid(sd_id128_t id) {
PyObject _cleanup_Py_DECREF_
*uuid = NULL, *UUID = NULL, *bytes = NULL,
- *args = NULL, *kwargs = NULL, *obj = NULL;
+ *args = NULL, *kwargs = NULL;
uuid = PyImport_ImportModule("uuid");
if (!uuid)