From 067e995c728b0a90c0315ad2ef4cce0f9d264157 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Sat, 6 Oct 2018 19:16:17 +0200 Subject: [PATCH] sd-path: drop redundant "= 0ULL" assignment in enum This has exactly zero effect as the type of an enum is not derived from the integer types assigned to its items. --- src/systemd/sd-path.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/systemd/sd-path.h b/src/systemd/sd-path.h index d9b99de..1637987 100644 --- a/src/systemd/sd-path.h +++ b/src/systemd/sd-path.h @@ -25,7 +25,7 @@ _SD_BEGIN_DECLARATIONS; enum { /* Temporary files */ - SD_PATH_TEMPORARY = 0x0ULL, + SD_PATH_TEMPORARY, SD_PATH_TEMPORARY_LARGE, /* Vendor supplied data */ -- 2.7.4