remove unnecessary casts
[mmh] / sbr / mf.c
index 3134328..7c6f004 100644 (file)
--- a/sbr/mf.c
+++ b/sbr/mf.c
@@ -42,7 +42,7 @@ getcpy(char *s)
                for(;;)
                        pause();
        }
-       p = mh_xcalloc((size_t) (strlen(s) + 2), sizeof(char));
+       p = mh_xcalloc(strlen(s) + 2, sizeof(char));
        strcpy(p, s);
        return p;
 }