small fix
[apps/madmutt.git] / imap / mx_imap.c
index dbec056..29abeec 100644 (file)
@@ -17,7 +17,6 @@
 #include "mx.h"
 #include "mx_imap.h"
 
-#include "lib/mem.h"
 #include "lib/str.h"
 
 #include "url.h"
@@ -63,7 +62,7 @@ static int imap_commit_message (MESSAGE* msg, CONTEXT* ctx) {
 }
 
 mx_t* imap_reg_mx (void) {
-  mx_t* fmt = mem_calloc (1, sizeof (mx_t));
+  mx_t* fmt = p_new(mx_t, 1);
 
   /* make up mx_t record... */
   fmt->type = M_IMAP;