summaryrefslogtreecommitdiff
path: root/systemd/id128.c
diff options
context:
space:
mode:
authorHarald Hoyer <harald@redhat.com>2013-04-18 09:11:22 +0200
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2015-07-05 14:19:19 -0400
commitfdb41b9f7088ae4fcb1d5b87362c7a16ff51861f (patch)
tree551045d5c91387fe21bf4a22225caf954b5b9d84 /systemd/id128.c
parent68db467eea78b2b2f02fd29641b3dfa3889fd60f (diff)
downloadpython-systemd-fdb41b9f7088ae4fcb1d5b87362c7a16ff51861f.tar.gz
move _cleanup_ attribute in front of the type
http://lists.freedesktop.org/archives/systemd-devel/2013-April/010510.html
Diffstat (limited to 'systemd/id128.c')
-rw-r--r--systemd/id128.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/systemd/id128.c b/systemd/id128.c
index a9611c4..1c2fe5d 100644
--- a/systemd/id128.c
+++ b/systemd/id128.c
@@ -52,7 +52,7 @@ 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;