From 2ee1c55d6c35c813e161787b6c147715377d8b29 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Mon, 3 Dec 2018 13:15:09 +0100 Subject: 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... --- src/systemd/_sd-common.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/systemd') 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 -- cgit v1.2.1