From 997d2ce5a970e6d2574ad265b25366971ca3bf6b Mon Sep 17 00:00:00 2001 From: Richard Russon Date: Wed, 18 Jul 2018 22:29:05 +0100 Subject: [PATCH] boolify recvcmd --- recvcmd.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/recvcmd.c b/recvcmd.c index 6526bd81f..2f2e4b406 100644 --- a/recvcmd.c +++ b/recvcmd.c @@ -393,7 +393,7 @@ static void include_header(int quote, FILE *ifp, struct Header *hdr, FILE *ofp, * This code is shared by forwarding and replying. */ static struct Body **copy_problematic_attachments(struct Body **last, - struct AttachCtx *actx, short force) + struct AttachCtx *actx, bool force) { for (short i = 0; i < actx->idxlen; i++) { @@ -975,7 +975,7 @@ void mutt_attach_reply(FILE *fp, struct Header *hdr, struct AttachCtx *actx, mutt_make_post_indent(Context, parent_hdr, tmpfp); if (mime_reply_any && !cur && - copy_problematic_attachments(&tmphdr->content, actx, 0) == NULL) + copy_problematic_attachments(&tmphdr->content, actx, false) == NULL) { mutt_header_free(&tmphdr); mutt_file_fclose(&tmpfp); -- 2.50.1