[PATCH 1/5] advice.h: don't indent top-level enum
From: Ævar Arnfjörð Bjarmason <hidden>
Date: 2021-10-04 01:58:33
Subsystem:
the rest · Maintainer:
Linus Torvalds
From: Ævar Arnfjörð Bjarmason <hidden>
Date: 2021-10-04 01:58:33
Subsystem:
the rest · Maintainer:
Linus Torvalds
Fix a style nit introduced in b3b18d16213 (advice: revamp advise API, 2020-03-02) and remove the leading whitespace before "enum". Signed-off-by: Ævar Arnfjörð Bjarmason <redacted> --- advice.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/advice.h b/advice.h
index 601265fd107..694219f5cb2 100644
--- a/advice.h
+++ b/advice.h@@ -12,7 +12,7 @@ struct string_list; * Add the new config variable to Documentation/config/advice.txt. * Call advise_if_enabled to print your advice. */ - enum advice_type { +enum advice_type { ADVICE_ADD_EMBEDDED_REPO, ADVICE_ADD_EMPTY_PATHSPEC, ADVICE_ADD_IGNORED_FILE,
--
2.33.0.1404.g7bcfc82b295