From: Thomas Roessler Date: Fri, 19 Sep 2003 13:05:13 +0000 (+0000) Subject: Fix remaining (void **) casts. X-Git-Tag: mutt-1-5-5-rel~25 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=16477bf306f2e4f5b5bd58cbb541e102a31f186a;p=mutt Fix remaining (void **) casts. --- diff --git a/imap/utf7.c b/imap/utf7.c index f792cd48..b6781a82 100644 --- a/imap/utf7.c +++ b/imap/utf7.c @@ -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;