From: Jim Meyering Date: Tue, 13 May 2003 14:54:31 +0000 (+0000) Subject: (elide_tail_lines_pipe): Don't apply cast to argument of free. X-Git-Tag: v5.0.1~494 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=5c0abf663a5533b0425759a4c51620c4168ab4e8;p=thirdparty%2Fcoreutils.git (elide_tail_lines_pipe): Don't apply cast to argument of free. --- diff --git a/src/head.c b/src/head.c index ad718aa1ee..464c678ce8 100644 --- a/src/head.c +++ b/src/head.c @@ -583,7 +583,7 @@ free_lbuffers: while (first) { tmp = first->next; - free ((char *) first); + free (first); first = tmp; } return errors;