From 60b910d7c27c4544e9c4525d0092d04cfdaf384e Mon Sep 17 00:00:00 2001 From: stefanf Date: Sat, 9 Apr 2005 14:31:41 +0000 Subject: Remove unused variables. --- usr.bin/du/du.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'usr.bin/du/du.c') diff --git a/usr.bin/du/du.c b/usr.bin/du/du.c index ed85eb6..8af4c46 100644 --- a/usr.bin/du/du.c +++ b/usr.bin/du/du.c @@ -307,7 +307,7 @@ linkchk(FTSENT *p) struct links_entry *le, **new_buckets; struct stat *st; size_t i, new_size; - int count, hash; + int hash; st = p->fts_statp; @@ -325,7 +325,6 @@ linkchk(FTSENT *p) if (number_entries > number_buckets * 10 && !stop_allocating) { new_size = number_buckets * 2; new_buckets = malloc(new_size * sizeof(struct links_entry *)); - count = 0; /* Try releasing the free list to see if that helps. */ if (new_buckets == NULL && free_list != NULL) { -- cgit v1.1