From: Lennart Poettering Date: Fri, 24 Apr 2026 08:32:52 +0000 (+0200) Subject: options: drop redundant enum value declaration X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b10d3631f36e4c45f6815f6461e4ab6e44553e03;p=thirdparty%2Fsystemd.git options: drop redundant enum value declaration --- diff --git a/src/shared/options.h b/src/shared/options.h index 3d08390b33e..889867bf6a9 100644 --- a/src/shared/options.h +++ b/src/shared/options.h @@ -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,