From: Zbigniew Jędrzejewski-Szmek Date: Mon, 18 Aug 2025 07:22:34 +0000 (+0200) Subject: fundamental/macro: adjust indentation of ifdefs X-Git-Tag: v258-rc3~9^2~5 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=58c2e99012bff25367af5ffa269e077fa4a14182;p=thirdparty%2Fsystemd.git fundamental/macro: adjust indentation of ifdefs --- diff --git a/src/fundamental/macro-fundamental.h b/src/fundamental/macro-fundamental.h index 7a962df82a0..a322a4587cf 100644 --- a/src/fundamental/macro-fundamental.h +++ b/src/fundamental/macro-fundamental.h @@ -421,7 +421,7 @@ assert_cc(sizeof(dummy_t) == 0); /* Restriction/bug (see below) was fixed in GCC 15 and clang 19. */ #if __GNUC__ >= 15 || (defined(__clang__) && __clang_major__ >= 19) -#define DECLARE_FLEX_ARRAY(type, name) type name[] +# define DECLARE_FLEX_ARRAY(type, name) type name[] #else /* Declare a flexible array usable in a union. * This is essentially a work-around for a pointless constraint in C99 @@ -443,9 +443,9 @@ assert_cc(sizeof(dummy_t) == 0); ".popsection\n") #ifdef SBAT_DISTRO - #define DECLARE_SBAT(text) DECLARE_NOALLOC_SECTION(".sbat", text) +# define DECLARE_SBAT(text) DECLARE_NOALLOC_SECTION(".sbat", text) #else - #define DECLARE_SBAT(text) +# define DECLARE_SBAT(text) #endif #define typeof_field(struct_type, member) typeof(((struct_type *) 0)->member)