From dce8b847f2c149f0f857918e3250b9dafeb5c713 Mon Sep 17 00:00:00 2001 From: Jens Axboe Date: Fri, 8 Jul 2011 20:47:03 +0200 Subject: [PATCH] Fix bad start_delay type Should be unsigned long long, causes a bus error on HP-UX. Signed-off-by: Jens Axboe --- fio.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fio.h b/fio.h index fc64e3ad..b869dd15 100644 --- a/fio.h +++ b/fio.h @@ -223,7 +223,7 @@ struct thread_options { unsigned int fsync_blocks; unsigned int fdatasync_blocks; unsigned int barrier_blocks; - unsigned long start_delay; + unsigned long long start_delay; unsigned long long timeout; unsigned long long ramp_time; unsigned int overwrite; -- 2.25.1