X-Git-Url: http://git.marmaro.de/?p=mmh;a=blobdiff_plain;f=uip%2Fmhlist.c;fp=uip%2Fmhlist.c;h=460901281f3cbe59c22a4c5e7ebe43c70372cd28;hp=6d7b8e7a6a594a32d56416864e0a61eedb4eeed4;hb=b78007de9802005825390bee71dfce2306b42519;hpb=10eff860a28b96582526eb739fd0a55441669938 diff --git a/uip/mhlist.c b/uip/mhlist.c index 6d7b8e7..4609012 100644 --- a/uip/mhlist.c +++ b/uip/mhlist.c @@ -197,7 +197,7 @@ main(int argc, char **argv) ** check if message is coming from file */ if (file) { - cts = (CT *) mh_xcalloc((size_t) 2, sizeof(*cts)); + cts = mh_xcalloc(2, sizeof(*cts)); ctp = cts; if ((ct = parse_mime(file))) @@ -231,8 +231,7 @@ main(int argc, char **argv) } seq_setprev(mp); /* set the previous-sequence */ - cts = (CT *) mh_xcalloc((size_t) (mp->numsel + 1), - sizeof(*cts)); + cts = mh_xcalloc(mp->numsel + 1, sizeof(*cts)); ctp = cts; for (msgnum = mp->lowsel; msgnum <= mp->hghsel; msgnum++) {