From 133bbca42e0ea4056e2151a1f5696b9ca8b6630b Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Fri, 26 Oct 2018 10:32:48 +0200 Subject: [PATCH] tmpfiles: no need to set zero initialization of first enum value --- src/tmpfiles/tmpfiles.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tmpfiles/tmpfiles.c b/src/tmpfiles/tmpfiles.c index 016693c8136..f7f72e9d0d0 100644 --- a/src/tmpfiles/tmpfiles.c +++ b/src/tmpfiles/tmpfiles.c @@ -146,7 +146,7 @@ typedef struct ItemArray { } ItemArray; typedef enum DirectoryType { - DIRECTORY_RUNTIME = 0, + DIRECTORY_RUNTIME, DIRECTORY_STATE, DIRECTORY_CACHE, DIRECTORY_LOGS, -- 2.47.3