]> diplodocus.org Git - nmh/blobdiff - uip/burst.c
Remove casts of NULL to a data pointer.
[nmh] / uip / burst.c
index 87538ae709aee7c9f6c90583396a65e4132903d7..5623e2c19060f3a46e25369f5c6044d009401d5a 100644 (file)
@@ -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 */
 }