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; } } }