aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/statistics/hash_table.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/statistics/hash_table.c')
-rw-r--r--src/core/statistics/hash_table.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/statistics/hash_table.c b/src/core/statistics/hash_table.c
index 1aee86d3a4..1f7c242c72 100644
--- a/src/core/statistics/hash_table.c
+++ b/src/core/statistics/hash_table.c
@@ -292,7 +292,7 @@ static void ht_delete_entry_chain(const census_ht_option* options,
}
void census_ht_destroy(census_ht* ht) {
- int i;
+ unsigned i;
for (i = 0; i < ht->num_buckets; ++i) {
ht_delete_entry_chain(&ht->options, ht->buckets[i].next);
}