From 886127936eae6a5bff449d797abb4e8aa10f9186 Mon Sep 17 00:00:00 2001 From: David Levine Date: Sat, 25 Jun 2016 21:22:37 -0400 Subject: [PATCH 1/1] 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) --- uip/mhshowsbr.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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(); -- 2.48.1