]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
basic/missing_*.h: indentation tweaks
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>
Tue, 19 Mar 2024 08:48:38 +0000 (09:48 +0100)
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>
Wed, 20 Mar 2024 11:26:16 +0000 (12:26 +0100)
src/basic/missing_input.h
src/basic/missing_loop.h
src/basic/missing_sched.h
src/basic/missing_type.h

index 4a756ab72e91c6954ca954fb9c4086e0118d5a93..ee61bf99d6a7320860281765878141e0ac93fad3 100644 (file)
@@ -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) */
index f89cdfa71915fc402cfd605bb2fff0fdee8ddfa9..c29082f519bb07965646e9ed8713d29daea1c975 100644 (file)
@@ -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
index 556cf55fc49d63ac7e1f21f2f616af08335ee1d5..b8109d30ac60fd8e38a3a628c6a0739d3a3cb649 100644 (file)
@@ -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
index f6233090a905c195b104196e1402359d745f8733..1d17705c356b1b86ca249df3de1f20ee10596051 100644 (file)
@@ -4,9 +4,9 @@
 #include <uchar.h>
 
 #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