mem_calloc -> p_new
[apps/madmutt.git] / history.c
index 2976633..304c7b9 100644 (file)
--- a/history.c
+++ b/history.c
@@ -41,7 +41,7 @@ static void init_history (struct history *h)
   }
 
   if (HistSize)
-    h->hist = mem_calloc (HistSize, sizeof (char *));
+    h->hist = p_new(char *, HistSize);
 
   h->cur = 0;
   h->last = 0;