From 038a9b42a6916d0af372377507368911ae371dfa Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Tue, 13 May 2003 14:37:33 +0000 Subject: (init_fps, init_store_cols): Don't apply cast to argument of free. --- src/pr.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/pr.c') 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) -- cgit v1.2.3-54-g00ecf