summaryrefslogtreecommitdiff
path: root/src/python-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>2013-03-20 19:16:01 -0400
commit4750fade135aed733aa7a5fda7c670e6b4391538 (patch)
tree4aa2d9c6f14ee1fba599f6403b4f15b47268eadf /src/python-systemd
parentfd4a5ec6fa834eb299b8e0ba6ab3e348d00d61b6 (diff)
Remove some unused variables
Diffstat (limited to 'src/python-systemd')
-rw-r--r--src/python-systemd/id128.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/python-systemd/id128.c b/src/python-systemd/id128.c
index 865cc3ce2..a9611c480 100644
--- a/src/python-systemd/id128.c
+++ b/src/python-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)