From: Jim Meyering Date: Tue, 13 May 2003 14:31:39 +0000 (+0000) Subject: Remove unnecessary cast of argument to free. X-Git-Tag: v5.0.1~509 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=949f3a3c7665956a66dc3e4b6a17fa31107ac5d0;p=thirdparty%2Fcoreutils.git Remove unnecessary cast of argument to free. --- diff --git a/src/tail.c b/src/tail.c index aad83d7026..92a775251d 100644 --- a/src/tail.c +++ b/src/tail.c @@ -623,7 +623,7 @@ free_lbuffers: while (first) { tmp = first->next; - free ((char *) first); + free (first); first = tmp; } return errors;