summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--libopkg/hash_table.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libopkg/hash_table.c b/libopkg/hash_table.c
index c98296e..181d319 100644
--- a/libopkg/hash_table.c
+++ b/libopkg/hash_table.c
@@ -69,7 +69,7 @@ hash_print_stats(hash_table_t *hash)
"\tmax_bucket_len=%d, n_used_buckets=%d, ave_bucket_len=%.2f\n"
"\tn_hits=%d, n_misses=%d\n",
hash->name,
- hash->n_buckets*sizeof(hash_entry_t),
+ hash->n_buckets*(int)sizeof(hash_entry_t),
hash->n_buckets,
hash->n_elements,
hash->n_collisions,