From: Ævar Arnfjörð Bjarmason Date: Sun, 28 Mar 2021 13:15:43 +0000 (+0200) Subject: fsck.c: undefine temporary STR macro after use X-Git-Tag: v2.32.0-rc0~102^2~8 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b5495024ec655c56a98bdd3f9a5d4dfe578aa08f;p=thirdparty%2Fgit.git fsck.c: undefine temporary STR macro after use In f417eed8cde (fsck: provide a function to parse fsck message IDs, 2015-06-22) the "STR" macro was introduced, but that short macro name was not undefined after use as was done earlier in the same series for the MSG_ID macro in c99ba492f1c (fsck: introduce identifiers for fsck messages, 2015-06-22). Signed-off-by: Ævar Arnfjörð Bjarmason Signed-off-by: Junio C Hamano --- diff --git a/fsck.c b/fsck.c index 80365e6284..1b12e824ef 100644 --- a/fsck.c +++ b/fsck.c @@ -100,6 +100,7 @@ static struct { { NULL, NULL, NULL, -1 } }; #undef MSG_ID +#undef STR static void prepare_msg_ids(void) {