]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
options: drop redundant enum value declaration
authorLennart Poettering <lennart@amutable.com>
Fri, 24 Apr 2026 08:32:52 +0000 (10:32 +0200)
committerZbigniew Jędrzejewski-Szmek <zbyszek@amutable.com>
Mon, 27 Apr 2026 18:12:46 +0000 (20:12 +0200)
src/shared/options.h

index 3d08390b33e90a835e097e4934889351ee320512..889867bf6a9b00b2c99d896d2bab8c3359abf910 100644 (file)
@@ -140,7 +140,7 @@ extern const Option __stop_SYSTEMD_OPTIONS[];
 
 typedef enum OptionParserMode {
         /* The default mode. This is the implicit default and doesn't have to be specified. */
-        OPTION_PARSER_NORMAL = 0,
+        OPTION_PARSER_NORMAL,
 
         /* Same as "+…" for getopt_long — only parse options before the first positional argument. */
         OPTION_PARSER_STOP_AT_FIRST_NONOPTION,