From 4380310e5b2004dcd4ab851003a9f09d419bfea7 Mon Sep 17 00:00:00 2001 From: "Darryl L. Miles" Date: Fri, 4 Oct 2024 19:38:28 +0100 Subject: [PATCH] EFvisit.c: warning: misleading indentation; I think the warning is bringing to attention the hidden fall-thru case situation. EFvisit.c:897:50: warning: misleading indentation; statement is not part of the previous 'if' clang18 -Wall warning cleanup [-Wmisleading-indentation] --- extflat/EFvisit.c | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/extflat/EFvisit.c b/extflat/EFvisit.c index 335fa716..a57356a8 100644 --- a/extflat/EFvisit.c +++ b/extflat/EFvisit.c @@ -894,9 +894,16 @@ EFHNOut(hierName, outf) } else switch (c) { - case '!': if (!trimGlob) (void) putc(c, outf); break; - case '#': if (trimLocal) break; - default: (void) putc(c, outf); break; + case '!': + if (!trimGlob) + (void) putc(c, outf); + break; + case '#': + if (trimLocal) + break; + default: + (void) putc(c, outf); + break; } } }