]> diplodocus.org Git - nmh/blobdiff - uip/burst.c
Remove casts of NULL to a data pointer.
[nmh] / uip / burst.c
index f188bf1f870f7db24ca88287154a2c9b89b24bea..5623e2c19060f3a46e25369f5c6044d009401d5a 100644 (file)
@@ -8,8 +8,8 @@
 #include <h/mh.h>
 #include <h/utils.h>
 #include <h/mhparse.h>
 #include <h/mh.h>
 #include <h/utils.h>
 #include <h/mhparse.h>
-#include "../sbr/m_maildir.h"
-#include "../sbr/m_mktemp.h"
+#include "sbr/m_maildir.h"
+#include "sbr/m_mktemp.h"
 #include "mhfree.h"
 
 #define BURST_SWITCHES \
 #include "mhfree.h"
 
 #define BURST_SWITCHES \
@@ -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;
                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);
     }
 
     fclose (in);
-    return (msgp - 1);         /* return the number of messages burst */
+    return msgp - 1;           /* return the number of messages burst */
 }
 
 
 }