From: Patrick Steinhardt Date: Wed, 17 May 2023 11:48:42 +0000 (+0200) Subject: fetch: drop unused DISPLAY_FORMAT_UNKNOWN enum value X-Git-Tag: v2.42.0-rc0~120^2~8 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=a40449bcd481ac2a164c55b4f038ced731cd9f2d;p=thirdparty%2Fgit.git fetch: drop unused DISPLAY_FORMAT_UNKNOWN enum value With 50957937f9 (fetch: introduce `display_format` enum, 2023-05-10), a new enumeration was introduced to determine the display format that is to be used by git-fetch(1). The `DISPLAY_FORMAT_UNKNOWN` value isn't ever used though, and neither do we rely on the explicit `0` value for initialization anywhere. Remove the enum value. Signed-off-by: Patrick Steinhardt Signed-off-by: Junio C Hamano --- diff --git a/builtin/fetch.c b/builtin/fetch.c index 849a9be421..9147b700e5 100644 --- a/builtin/fetch.c +++ b/builtin/fetch.c @@ -58,7 +58,6 @@ enum { }; enum display_format { - DISPLAY_FORMAT_UNKNOWN = 0, DISPLAY_FORMAT_FULL, DISPLAY_FORMAT_COMPACT, DISPLAY_FORMAT_PORCELAIN,