Fix pedantic -Wparentheses warning emitted by gcc 9.0

This commit is contained in:
Evan Klitzke 2019-05-06 07:57:19 -07:00
parent da626cef80
commit 0cc94468b3
No known key found for this signature in database
GPG Key ID: 3279048B58C0BCC2
1 changed files with 1 additions and 1 deletions

View File

@ -458,7 +458,7 @@ accumulate_body (MuMsg *msg, MuMsgPart *mpart, BodyData *bdata)
txt = NULL;
has_err = TRUE;
if (bdata->want_html && is_html || !bdata->want_html && is_plain)
if ((bdata->want_html && is_html) || (!bdata->want_html && is_plain))
txt = mu_msg_mime_part_to_string (mimepart, &has_err);
if (!has_err && txt)