From: Jim Meyering Date: Tue, 13 May 2003 14:48:36 +0000 (+0000) Subject: (alloca): Don't apply cast to argument of free. X-Git-Tag: v5.0.1~496 X-Git-Url: http://git.ipfire.org/gitweb/index.cgi?a=commitdiff_plain;h=1aa55ac2776c8bf1644ee55f47e9e312decc3f3f;p=thirdparty%2Fcoreutils.git (alloca): Don't apply cast to argument of free. --- diff --git a/lib/alloca.c b/lib/alloca.c index fd95a34d63..f4c364a725 100644 --- a/lib/alloca.c +++ b/lib/alloca.c @@ -193,7 +193,7 @@ alloca (size) { register header *np = hp->h.next; - free ((pointer) hp); /* Collect garbage. */ + free (hp); /* Collect garbage. */ hp = np; /* -> next header. */ }