From 65f41ccb386850671c0651f976cd33fdfbe0644d Mon Sep 17 00:00:00 2001 From: Jens Axboe Date: Wed, 13 Jan 2016 13:17:39 -0700 Subject: [PATCH] t/verify-state: one more printf type fix Signed-off-by: Jens Axboe --- t/verify-state.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/t/verify-state.c b/t/verify-state.c index 417777ae..6e8cd354 100644 --- a/t/verify-state.c +++ b/t/verify-state.c @@ -27,7 +27,7 @@ static void show_s(struct thread_io_list *s, unsigned int no_s) printf("Completions:\n"); for (i = 0; i < s->no_comps; i++) - printf("\t%lu\n", s->offsets[i]); + printf("\t%llu\n", (unsigned long long) s->offsets[i]); } static void show_verify_state(void *buf, size_t size) -- 2.25.1