From 88bde0af33256b4773dc1e5113f42785b9d0637a Mon Sep 17 00:00:00 2001 From: Leah Neukirchen Date: Fri, 6 Oct 2017 13:16:30 +0200 Subject: mshow: render_mime: fix logic bug --- mshow.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'mshow.c') diff --git a/mshow.c b/mshow.c index 5f24d75..db548d7 100644 --- a/mshow.c +++ b/mshow.c @@ -225,7 +225,7 @@ render_mime(int depth, struct message *msg, char *body, size_t bodylen) if (e == 0) print_ascii(output, outlen); else - return fwrite(output, 1, outlen, stdout); + fwrite(output, 1, outlen, stdout); if (output[outlen-1] != '\n') putchar('\n'); } -- cgit 1.4.1