From: Paul Walker Date: Sat, 7 Dec 2002 08:55:23 +0000 (+0000) Subject: Fix a compilation warning. X-Git-Tag: mutt-1-5-3-rel~67 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b58ad67a64c91ae7c6bf196a1708cc55fd6a2b56;p=mutt Fix a compilation warning. --- diff --git a/pgppubring.c b/pgppubring.c index 9c03603d..7e8fd51f 100644 --- a/pgppubring.c +++ b/pgppubring.c @@ -766,7 +766,7 @@ static void pgpring_find_candidates (char *ringfile, const char *hints[], int nh error_buf = safe_malloc (error_buf_len); snprintf (error_buf, error_buf_len, "fopen: %s", ringfile); perror (error_buf); - safe_free (&error_buf); + safe_free ((void **) &error_buf); return; }