sd-path: drop redundant "= 0ULL" assignment in enum
authorLennart Poettering <lennart@poettering.net>
Sat, 6 Oct 2018 17:16:17 +0000 (19:16 +0200)
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>
Fri, 9 Nov 2018 16:19:45 +0000 (17:19 +0100)
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

index d9b99de..1637987 100644 (file)
@@ -25,7 +25,7 @@ _SD_BEGIN_DECLARATIONS;
 
 enum {
         /* Temporary files */
-        SD_PATH_TEMPORARY = 0x0ULL,
+        SD_PATH_TEMPORARY,
         SD_PATH_TEMPORARY_LARGE,
 
         /* Vendor supplied data */