summaryrefslogtreecommitdiff
path: root/src/head.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2003-05-13 14:54:31 +0000
committerJim Meyering <jim@meyering.net>2003-05-13 14:54:31 +0000
commit5c0abf663a5533b0425759a4c51620c4168ab4e8 (patch)
tree4aa444d4b56514973a7c2135df276d9dc39963c5 /src/head.c
parent3a5e722af019c900f11d4b6c311e9426a0d356e3 (diff)
downloadcoreutils-5c0abf663a5533b0425759a4c51620c4168ab4e8.tar.xz
(elide_tail_lines_pipe): Don't apply cast to argument of free.
Diffstat (limited to 'src/head.c')
-rw-r--r--src/head.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/head.c b/src/head.c
index ad718aa1e..464c678ce 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;