From: Jim Meyering Date: Tue, 13 May 2003 14:36:29 +0000 (+0000) Subject: (zaptemp): Don't apply cast to argument of free. X-Git-Tag: v5.0.1~507 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=25227196a87e37917762d55fef3a049a6b1e13da;p=thirdparty%2Fcoreutils.git (zaptemp): Don't apply cast to argument of free. --- diff --git a/src/sort.c b/src/sort.c index 76627ff616..a0417e1ad9 100644 --- a/src/sort.c +++ b/src/sort.c @@ -522,7 +522,7 @@ zaptemp (const char *name) { unlink (name); *pnode = node->next; - free ((char *) node); + free (node); break; } }