From: Lennart Poettering Date: Sat, 6 Oct 2018 17:16:17 +0000 (+0200) Subject: sd-path: drop redundant "= 0ULL" assignment in enum X-Git-Tag: v240~374 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=067e995c728b0a90c0315ad2ef4cce0f9d264157;p=thirdparty%2Fsystemd.git 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. --- diff --git a/src/systemd/sd-path.h b/src/systemd/sd-path.h index d9b99de0d88..16379876eb6 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 */