From 499b419fac5c4ff7ae754bf4078f69c3796e2e7f Mon Sep 17 00:00:00 2001 From: Stephen Gallagher Date: Thu, 29 Oct 2009 13:41:01 -0400 Subject: Clean up warnings in dhash tests --- dhash/dhash_test.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'dhash/dhash_test.c') diff --git a/dhash/dhash_test.c b/dhash/dhash_test.c index 8509964..450a1ab 100644 --- a/dhash/dhash_test.c +++ b/dhash/dhash_test.c @@ -285,7 +285,7 @@ int main(int argc, char **argv) /* Get an array of keys in the table, print them out */ { - unsigned long i, count; + unsigned long count; hash_key_t *keys; if (verbose) printf("\nhash_keys:\n"); @@ -309,7 +309,7 @@ int main(int argc, char **argv) /* Get an array of values in the table, print them out */ { - unsigned long i, count; + unsigned long count; hash_value_t *values; if (verbose) printf("\nhash_values:\n"); @@ -329,7 +329,7 @@ int main(int argc, char **argv) /* Get an array of items in the table, print them out */ { - unsigned long i, count; + unsigned long count; hash_entry_t *entries; if (verbose) printf("\nhash_entries:\n"); -- cgit