summaryrefslogtreecommitdiff
path: root/src/systemd
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2018-12-03 13:15:09 +0100
committerLennart Poettering <lennart@poettering.net>2018-12-03 13:28:26 +0100
commit2ee1c55d6c35c813e161787b6c147715377d8b29 (patch)
tree74ac592ccadaeb20a3f459ecdd591b28368aa0be /src/systemd
parentd752090f3efebe6d71e5baf994f694f6dc9bd43c (diff)
downloadsystemd-2ee1c55d6c35c813e161787b6c147715377d8b29.tar.gz
tree-wide: drop redundant space between __attribute__ and ((
We follow no general rule, but in most cases we do not place a space outside of macro.h. Hence let's stick to that, and adapt macro.h too, and follow the rule systematically that there shall not be a space between __attribute__ and ((... Yes, this does not matter at all, and is purely OCD cosmetics. But then again, the uses of __attribute__ are very local only, hence the changes cleaning this up are small and are unlikely to have to be repeated too often...
Diffstat (limited to 'src/systemd')
-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 b026b5c551..6fd9244a01 100644
--- a/src/systemd/_sd-common.h
+++ b/src/systemd/_sd-common.h
@@ -25,7 +25,7 @@
#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