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/9626eb33ed5ff7c59776081e1a58a20a1eed96be?hp=79f012b76eba04d50a36a4a37c57458a8d521434 Wrapped code block of conditional statement with {}, so that the second statement is now included in the conditional. Found by gcc 6 -Wmisleading-indentation. --- 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();