summaryrefslogtreecommitdiff
path: root/src/systemd/_sd-common.h
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2018-12-03 21:59:00 +0100
committerGitHub <noreply@github.com>2018-12-03 21:59:00 +0100
commit63e688cc3bbf18fdd0f780facfd3316d372ab61e (patch)
tree022b3de7d1abfd3843447b9e261a981a37ec3deb /src/systemd/_sd-common.h
parent1e8817b327f142be1246117ea5220f4afa87d7d6 (diff)
parent0df54921bc3567db80eb894b01b2b5a6ea3d7c02 (diff)
downloadsystemd-63e688cc3bbf18fdd0f780facfd3316d372ab61e.tar.gz
Merge pull request #11031 from poettering/gcc-attr-cleanup
various gcc attribute clean-ups
Diffstat (limited to 'src/systemd/_sd-common.h')
-rw-r--r--src/systemd/_sd-common.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/systemd/_sd-common.h b/src/systemd/_sd-common.h
index 9950339d54..05c38008cf 100644
--- a/src/systemd/_sd-common.h
+++ b/src/systemd/_sd-common.h
@@ -27,7 +27,7 @@ typedef void (*_sd_destroy_t)(void *userdata);
#ifndef _sd_printf_
# if __GNUC__ >= 4
-# define _sd_printf_(a,b) __attribute__ ((__format__(printf, a, b)))
+# define _sd_printf_(a,b) __attribute__((__format__(printf, a, b)))
# else
# define _sd_printf_(a,b)
# endif