diff options
author | Josh Boyer <jwboyer@gmail.com> | 2007-02-12 20:41:17 -0600 |
---|---|---|
committer | Josh Boyer <jwboyer@gmail.com> | 2007-02-12 20:41:17 -0600 |
commit | 9fe86e65fb6bd77a02955d07d6f336ace4984e2d (patch) | |
tree | c0eaa1ed72b8e39bcefe419c481618eb8b5d5b1f /ubi-utils/src/hashmap.c | |
parent | 5327be2927984d4ba365c76a5f4b22839f6e680b (diff) |
Fix several issues when compiling for 64bit systems
Signed-off-by: Josh Boyer <jwboyer@gmail.com>
Diffstat (limited to 'ubi-utils/src/hashmap.c')
-rw-r--r-- | ubi-utils/src/hashmap.c | 2 |
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]); } } |