From: Jens Axboe Date: Wed, 13 Jan 2016 20:17:39 +0000 (-0700) Subject: t/verify-state: one more printf type fix X-Git-Tag: fio-2.4~6 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=65f41ccb386850671c0651f976cd33fdfbe0644d;p=fio.git t/verify-state: one more printf type fix Signed-off-by: Jens Axboe --- 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)