From adfa48b95c197a6ead2725835753732a9e03afa8 Mon Sep 17 00:00:00 2001 From: Rusty Russell Date: Fri, 13 Jun 2014 11:26:27 +0930 Subject: [PATCH] ccan/htable: fix tools warning for 64-bit systems. Signed-off-by: Rusty Russell --- ccan/htable/tools/speed.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/ccan/htable/tools/speed.c b/ccan/htable/tools/speed.c index 4cbc5ead..dce3fdf9 100644 --- a/ccan/htable/tools/speed.c +++ b/ccan/htable/tools/speed.c @@ -127,7 +127,8 @@ static size_t worst_run(struct htable *ht, size_t *deleted) int main(int argc, char *argv[]) { struct object *objs; - size_t i, j, num, deleted; + unsigned int i, j; + size_t num, deleted; struct timeabs start, stop; struct htable_obj ht; bool make_dumb = false; @@ -305,7 +306,7 @@ int main(int argc, char *argv[]) printf("Details: delete markers %zu, perfect %.0f%%\n", count_deleted(&ht.raw), perfect(&ht.raw) * 100.0 / ht.raw.elems); i = worst_run(&ht.raw, &deleted); - printf("Details: worst run %zu (%zu deleted)\n", i, deleted); + printf("Details: worst run %u (%zu deleted)\n", i, deleted); printf("Lookup after churn & spread (match): "); fflush(stdout); -- 2.39.2