From 7cd43f4203374d69bae25a2c3757505c437d3722 Mon Sep 17 00:00:00 2001 From: Leah Neukirchen Date: Fri, 15 May 2020 18:49:04 +0200 Subject: mlist: fix dangling else warning --- mlist.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/mlist.c b/mlist.c index fd4fde1..3cb082f 100644 --- a/mlist.c +++ b/mlist.c @@ -288,13 +288,14 @@ usage: listarg(argv[i]); } - if (iflag && tdirs > 1) + if (iflag && tdirs > 1) { if (flagset) printf("%6ld matched %6ld unseen %3ld flagged %6ld msg\n", tmatched, tunseen, tflagged, tcount); else printf("%6ld unseen %3ld flagged %6ld msg\n", tunseen, tflagged, tcount); + } return 0; } -- cgit 1.4.1