summaryrefslogtreecommitdiff
path: root/ubi-utils/src/hashmap.c
diff options
context:
space:
mode:
Diffstat (limited to 'ubi-utils/src/hashmap.c')
-rw-r--r--ubi-utils/src/hashmap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ubi-utils/src/hashmap.c b/ubi-utils/src/hashmap.c
index 250f71f..3511d56 100644
--- a/ubi-utils/src/hashmap.c
+++ b/ubi-utils/src/hashmap.c
@@ -323,7 +323,7 @@ hashmap_dump(hashmap_t map)
for(i = 0; i < map->maxsize; i++) {
if (map->data[i] != NULL) {
- printf("[%d]: ", i);
+ printf("[%zd]: ", i);
print_all(map->data[i]);
}
}