X-Git-Url: https://diplodocus.org/git/nmh/blobdiff_plain/3736af69c183d472642ed17375b0970f5239e6e5..8e5bcb24340597d842ff02eadd73bd9f775ea80a:/sbr/m_convert.c diff --git a/sbr/m_convert.c b/sbr/m_convert.c index c4e629cb..06e31afe 100644 --- a/sbr/m_convert.c +++ b/sbr/m_convert.c @@ -293,16 +293,16 @@ m_conv (struct msgs *mp, char *str, int call) delimp = cp; if (!strcmp (buf, "first")) - return (mp->hghmsg || !(mp->msgflags & ALLOW_NEW) - ? mp->lowmsg : BADMSG); + return mp->hghmsg || !(mp->msgflags & ALLOW_NEW) ? + mp->lowmsg : BADMSG; if (!strcmp (buf, "last")) { convdir = -1; - return (mp->hghmsg || !(mp->msgflags & ALLOW_NEW) ? mp->hghmsg : BADMSG); + return mp->hghmsg || !(mp->msgflags & ALLOW_NEW) ? mp->hghmsg : BADMSG; } if (!strcmp (buf, "cur") || !strcmp (buf, ".")) - return (mp->curmsg > 0 ? mp->curmsg : BADMSG); + return mp->curmsg > 0 ? mp->curmsg : BADMSG; if (!strcmp (buf, "prev")) { convdir = -1;