]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
(elide_tail_lines_pipe): Don't apply cast to argument of free.
authorJim Meyering <jim@meyering.net>
Tue, 13 May 2003 14:54:31 +0000 (14:54 +0000)
committerJim Meyering <jim@meyering.net>
Tue, 13 May 2003 14:54:31 +0000 (14:54 +0000)
src/head.c

index ad718aa1ee373777c9f2324373e7603118cb7b00..464c678ce81d638c40c8037f619dd87a28d0d0ee 100644 (file)
@@ -583,7 +583,7 @@ free_lbuffers:
   while (first)
     {
       tmp = first->next;
-      free ((char *) first);
+      free (first);
       first = tmp;
     }
   return errors;