Merge pull request #1417 from eklitzke/wparenthesis

Fix pedantic -Wparentheses warning generated by gcc 9
This commit is contained in:
Dirk-Jan C. Binnema 2019-05-08 21:10:23 +03:00 committed by GitHub
commit bf0b79c2ff
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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)