From: David Levine Date: Sun, 26 Jun 2016 01:22:37 +0000 (-0400) Subject: Wrapped code block of conditional statement with {}, so that the X-Git-Url: https://diplodocus.org/git/nmh/commitdiff_plain/886127936eae6a5bff449d797abb4e8aa10f9186?ds=inline;hp=-c Wrapped code block of conditional statement with {}, so that the second statement is now included in the conditional. Found by gcc 6 -Wmisleading-indentation. (cherry picked from commit 9626eb33ed5ff7c59776081e1a58a20a1eed96be) --- 886127936eae6a5bff449d797abb4e8aa10f9186 diff --git a/uip/mhshowsbr.c b/uip/mhshowsbr.c index a87778ef..f410d1a4 100644 --- a/uip/mhshowsbr.c +++ b/uip/mhshowsbr.c @@ -126,11 +126,12 @@ show_all_messages (CT *cts, int concatsw, int textonly, int inlineonly) ct = *ctp; /* if top-level type is ok, then display message */ - if (type_ok (ct, 1)) + if (type_ok (ct, 1)) { if (headersw) output_header(ct, hfmt); show_single_message (ct, formsw, concatsw, textonly, inlineonly, mfmt); + } } free_markercomps();