From 62e9ece4d540ff2af865e4b43811f3150b8b846b Mon Sep 17 00:00:00 2001 From: Jens Axboe Date: Thu, 3 Feb 2022 16:05:02 -0700 Subject: [PATCH] fio: use correct function declaration for set_epoch_time() Fixes: d5b3cfd4064d ("Support for alternate epochs in fio log files") Signed-off-by: Jens Axboe --- fio_time.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fio_time.h b/fio_time.h index 59f25d82..62d92120 100644 --- a/fio_time.h +++ b/fio_time.h @@ -30,6 +30,6 @@ extern bool ramp_time_over(struct thread_data *); extern bool in_ramp_time(struct thread_data *); extern void fio_time_init(void); extern void timespec_add_msec(struct timespec *, unsigned int); -extern void set_epoch_time(struct thread_data *, int, int); +extern void set_epoch_time(struct thread_data *, int, clockid_t); #endif -- 2.25.1