From: Ævar Arnfjörð Bjarmason Date: Wed, 23 Mar 2022 09:13:03 +0000 (+0800) Subject: ls-tree: add missing braces to "else" arms X-Git-Tag: v2.36.0-rc0~17^2~12 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=82e69b0cb5efff33f9359aa0141b05c93001157e;p=thirdparty%2Fgit.git ls-tree: add missing braces to "else" arms Add missing {} to the "else" arms in show_tree() per the CodingGuidelines. Signed-off-by: Ævar Arnfjörð Bjarmason Signed-off-by: Junio C Hamano --- diff --git a/builtin/ls-tree.c b/builtin/ls-tree.c index 5f7c84950c..0a28f32ccb 100644 --- a/builtin/ls-tree.c +++ b/builtin/ls-tree.c @@ -92,14 +92,16 @@ static int show_tree(const struct object_id *oid, struct strbuf *base, else xsnprintf(size_text, sizeof(size_text), "%"PRIuMAX, (uintmax_t)size); - } else + } else { xsnprintf(size_text, sizeof(size_text), "-"); + } printf("%06o %s %s %7s\t", mode, type, find_unique_abbrev(oid, abbrev), size_text); - } else + } else { printf("%06o %s %s\t", mode, type, find_unique_abbrev(oid, abbrev)); + } } baselen = base->len; strbuf_addstr(base, pathname);