From ae66acac87bc9f64809df8fa46ceec81731ec1be Mon Sep 17 00:00:00 2001 From: Stefan Farfeleder Date: Tue, 18 Jul 2006 07:16:25 +0000 Subject: [PATCH] The variables i and tot don't need to be static. --- usr.bin/col/col.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/usr.bin/col/col.c b/usr.bin/col/col.c index c6a8feb4fff6..8b45ba697202 100644 --- a/usr.bin/col/col.c +++ b/usr.bin/col/col.c @@ -397,14 +397,14 @@ void flush_line(LINE *l) { CHAR *c, *endc; - int j, nchars, last_col, this_col; + int i, j, nchars, last_col, save, this_col, tot; last_col = 0; nchars = l->l_line_len; if (l->l_needs_sort) { static CHAR *sorted; - static int count_size, *count, i, save, sorted_size, tot; + static int count_size, *count, sorted_size; /* * Do an O(n) sort on l->l_line by column being careful to