Fix spelling and encoding errors in manpages and an error message
[mmh] / sbr / m_getfld.c
index 6931b2e..1ec09a4 100644 (file)
@@ -609,7 +609,7 @@ thisisanmbox(FILE *iob)
                continue;
        }
        c = strlen(delimstr);
-       fdelim = (unsigned char *) mh_xcalloc((size_t) (c + 3), sizeof(char));
+       fdelim = mh_xcalloc(c + 3, sizeof(char));
        *fdelim++ = '\0';
        *fdelim = '\n';
        msg_delim = (char *)fdelim+1;
@@ -626,7 +626,7 @@ thisisanmbox(FILE *iob)
        ** separator) or the last char (since the matchc would have found it
        ** if it was a real delim).
        */
-       pat_map = (unsigned char **) mh_xcalloc(256, sizeof(unsigned char *));
+       pat_map = mh_xcalloc(256, sizeof(unsigned char *));
 
        for (cp = (char *) fdelim + 1; cp < (char *) delimend; cp++ )
                pat_map[(unsigned char)*cp] = (unsigned char *) cp;