]> granicus.if.org Git - mutt/commitdiff
Fix remaining (void **) casts.
authorThomas Roessler <roessler@does-not-exist.org>
Fri, 19 Sep 2003 13:05:13 +0000 (13:05 +0000)
committerThomas Roessler <roessler@does-not-exist.org>
Fri, 19 Sep 2003 13:05:13 +0000 (13:05 +0000)
imap/utf7.c

index f792cd48027097752e4d942f67418f7b8f4b8c21..b6781a8248d86a3797cda65fe4626f60a0bcc9b0 100644 (file)
@@ -124,7 +124,7 @@ static char *utf7_to_utf8 (const char *u7, size_t u7len, char **u8,
   if (u8len)
     *u8len = p - buf;
 
-  safe_realloc ((void **) &buf, p - buf);
+  safe_realloc (&buf, p - buf);
   if (u8)
     *u8 = buf;
   return buf;
@@ -238,7 +238,7 @@ static char *utf8_to_utf7 (const char *u8, size_t u8len, char **u7,
   *p++ = '\0';
   if (u7len)
     *u7len = p - buf;
-  safe_realloc ((void **) &buf, p - buf);
+  safe_realloc (&buf, p - buf);
   if (u7)  *u7 = buf;
   return buf;