]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
socket-util: fix indentation
authorLennart Poettering <lennart@poettering.net>
Mon, 15 Feb 2021 21:49:24 +0000 (22:49 +0100)
committerLennart Poettering <lennart@poettering.net>
Mon, 15 Feb 2021 21:50:43 +0000 (22:50 +0100)
src/basic/socket-util.h

index b741a90be7b50329857859b09c1bc96e2708e3b0..2c98283cd34b52b2fdab575f3a5d7dff25e6b9fb 100644 (file)
@@ -133,9 +133,9 @@ int ip_tos_to_string_alloc(int i, char **s);
 int ip_tos_from_string(const char *s);
 
 typedef enum {
-      IFNAME_VALID_ALTERNATIVE = 1 << 0,
-      IFNAME_VALID_NUMERIC     = 1 << 1,
-      _IFNAME_VALID_ALL        = IFNAME_VALID_ALTERNATIVE | IFNAME_VALID_NUMERIC,
+        IFNAME_VALID_ALTERNATIVE = 1 << 0,
+        IFNAME_VALID_NUMERIC     = 1 << 1,
+        _IFNAME_VALID_ALL        = IFNAME_VALID_ALTERNATIVE | IFNAME_VALID_NUMERIC,
 } IfnameValidFlags;
 bool ifname_valid_full(const char *p, IfnameValidFlags flags);
 static inline bool ifname_valid(const char *p) {