summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2003-05-13 14:37:33 +0000
committerJim Meyering <jim@meyering.net>2003-05-13 14:37:33 +0000
commit038a9b42a6916d0af372377507368911ae371dfa (patch)
treeb092afff7f29057926a7110fced3b2fe6256f958 /src
parent25227196a87e37917762d55fef3a049a6b1e13da (diff)
downloadcoreutils-038a9b42a6916d0af372377507368911ae371dfa.tar.xz
(init_fps, init_store_cols): Don't apply cast to argument of free.
Diffstat (limited to 'src')
-rw-r--r--src/pr.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/pr.c b/src/pr.c
index a3fc06384..fcf6eb3cc 100644
--- a/src/pr.c
+++ b/src/pr.c
@@ -1338,7 +1338,7 @@ init_fps (int number_of_files, char **av)
total_files = 0;
if (column_vector != NULLCOL)
- free ((char *) column_vector);
+ free (column_vector);
column_vector = xmalloc (columns * sizeof (COLUMN));
if (parallel_files)
@@ -1907,12 +1907,12 @@ init_store_cols (void)
int chars_if_truncate = total_lines * (chars_per_column + 1);
if (line_vector != NULL)
- free ((int *) line_vector);
+ free (line_vector);
/* FIXME: here's where it was allocated. */
line_vector = xmalloc ((total_lines + 1) * sizeof (int *));
if (end_vector != NULL)
- free ((int *) end_vector);
+ free (end_vector);
end_vector = xmalloc (total_lines * sizeof (int *));
if (buff != NULL)