diff options
author | Jim Meyering <jim@meyering.net> | 2003-05-13 14:54:31 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2003-05-13 14:54:31 +0000 |
commit | 5c0abf663a5533b0425759a4c51620c4168ab4e8 (patch) | |
tree | 4aa444d4b56514973a7c2135df276d9dc39963c5 /src | |
parent | 3a5e722af019c900f11d4b6c311e9426a0d356e3 (diff) | |
download | coreutils-5c0abf663a5533b0425759a4c51620c4168ab4e8.tar.xz |
(elide_tail_lines_pipe): Don't apply cast to argument of free.
Diffstat (limited to 'src')
-rw-r--r-- | src/head.c | 2 |
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; |