From: Zbigniew Jędrzejewski-Szmek Date: Tue, 19 Mar 2024 08:48:38 +0000 (+0100) Subject: basic/missing_*.h: indentation tweaks X-Git-Tag: v256-rc1~465^2~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=aee547b97b398d6d40aef4e45f4eb80c10862930;p=thirdparty%2Fsystemd.git basic/missing_*.h: indentation tweaks --- diff --git a/src/basic/missing_input.h b/src/basic/missing_input.h index 4a756ab72e9..ee61bf99d6a 100644 --- a/src/basic/missing_input.h +++ b/src/basic/missing_input.h @@ -19,8 +19,8 @@ struct input_mask { __u64 codes_ptr; }; -#define EVIOCGMASK _IOR('E', 0x92, struct input_mask) -#define EVIOCSMASK _IOW('E', 0x93, struct input_mask) +# define EVIOCGMASK _IOR('E', 0x92, struct input_mask) +# define EVIOCSMASK _IOW('E', 0x93, struct input_mask) #endif /* linux@7611392fe8ff95ecae528b01a815ae3d72ca6b95 (3.17) */ diff --git a/src/basic/missing_loop.h b/src/basic/missing_loop.h index f89cdfa7191..c29082f519b 100644 --- a/src/basic/missing_loop.h +++ b/src/basic/missing_loop.h @@ -27,5 +27,5 @@ assert_cc(LO_FLAGS_DIRECT_IO == 0x4C08); #endif #ifndef LOOP_SET_STATUS_SETTABLE_FLAGS -#define LOOP_SET_STATUS_SETTABLE_FLAGS (LO_FLAGS_AUTOCLEAR | LO_FLAGS_PARTSCAN | LO_FLAGS_DIRECT_IO) +# define LOOP_SET_STATUS_SETTABLE_FLAGS (LO_FLAGS_AUTOCLEAR | LO_FLAGS_PARTSCAN | LO_FLAGS_DIRECT_IO) #endif diff --git a/src/basic/missing_sched.h b/src/basic/missing_sched.h index 556cf55fc49..b8109d30ac6 100644 --- a/src/basic/missing_sched.h +++ b/src/basic/missing_sched.h @@ -25,10 +25,11 @@ assert_cc(CLONE_NEWTIME == 0x00000080); assert_cc(PF_KTHREAD == 0x00200000); #endif -/* The maximum thread/process name length including trailing NUL byte. This mimics the kernel definition of the same - * name, which we need in userspace at various places but is not defined in userspace currently, neither under this - * name nor any other. */ -/* Not exposed yet. Defined at include/linux/sched.h */ +/* The maximum thread/process name length including trailing NUL byte. This mimics the kernel definition of + * the same name, which we need in userspace at various places but is not defined in userspace currently, + * neither under this name nor any other. + * + * Not exposed yet. Defined at include/linux/sched.h */ #ifndef TASK_COMM_LEN # define TASK_COMM_LEN 16 #else diff --git a/src/basic/missing_type.h b/src/basic/missing_type.h index f6233090a90..1d17705c356 100644 --- a/src/basic/missing_type.h +++ b/src/basic/missing_type.h @@ -4,9 +4,9 @@ #include #if !HAVE_CHAR32_T -#define char32_t uint32_t +# define char32_t uint32_t #endif #if !HAVE_CHAR16_T -#define char16_t uint16_t +# define char16_t uint16_t #endif