X-Git-Url: https://diplodocus.org/git/nmh/blobdiff_plain/459c5e3d66287e314dff8543df32c6c14a8464c6..5c01446c027960e00b33f623212de645475569aa:/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 */ }