X-Git-Url: https://diplodocus.org/git/nmh/blobdiff_plain/3b6170b27ba8fedbb4d67d2842bfaa38d4417962..b42bad5fdb20cefbafdcc2b3c90e191b4a231787:/uip/burst.c diff --git a/uip/burst.c b/uip/burst.c index 87538ae7..5623e2c1 100644 --- a/uip/burst.c +++ b/uip/burst.c @@ -252,7 +252,7 @@ find_delim (int msgnum, struct smsg *smsgs, int *mimesw) adios (msgnam, "does not have any message/rfc822 parts"); if (msgp > 1) { *mimesw = 1; - return (msgp - 1); + return msgp - 1; } } } @@ -315,7 +315,7 @@ find_delim (int msgnum, struct smsg *smsgs, int *mimesw) } fclose (in); - return (msgp - 1); /* return the number of messages burst */ + return msgp - 1; /* return the number of messages burst */ }