Update documentation
[fio.git] / t / verify-state.c
index cb5ef31d8c36e199933fc586d94873f831b32c61..6e8cd354fa9cea2fb5c761cf0b239b0244be049e 100644 (file)
@@ -20,14 +20,14 @@ static void show_s(struct thread_io_list *s, unsigned int no_s)
        int i;
 
        printf("Thread %u, %s\n", no_s, s->name);
-       printf("Completions: %lu\n", s->no_comps);
-       printf("Depth: %lu\n", s->depth);
-       printf("Number IOs: %lu\n", s->numberio);
-       printf("Index: %lu\n", s->index);
+       printf("Completions: %llu\n", (unsigned long long) s->no_comps);
+       printf("Depth: %llu\n", (unsigned long long) s->depth);
+       printf("Number IOs: %llu\n", (unsigned long long) s->numberio);
+       printf("Index: %llu\n", (unsigned long long) s->index);
 
        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)