From: Jens Axboe Date: Thu, 3 Feb 2022 23:05:02 +0000 (-0700) Subject: fio: use correct function declaration for set_epoch_time() X-Git-Tag: fio-3.30~55 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=62e9ece4d540ff2af865e4b43811f3150b8b846b;p=fio.git fio: use correct function declaration for set_epoch_time() Fixes: d5b3cfd4064d ("Support for alternate epochs in fio log files") Signed-off-by: Jens Axboe --- 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