From aa83321fca5bb46d593d19d3863f511f80c01639 Mon Sep 17 00:00:00 2001 From: Jens Axboe Date: Wed, 23 Jan 2013 13:35:14 -0700 Subject: [PATCH 1/1] Fix 32-bit compile warning in should_check_rate() Introduced with the change from unsigned long -> uint64_T Signed-off-by: Jens Axboe --- fio.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fio.h b/fio.h index ed793ae5..1ff384fd 100644 --- a/fio.h +++ b/fio.h @@ -792,7 +792,7 @@ static inline int __should_check_rate(struct thread_data *td, } static inline int should_check_rate(struct thread_data *td, - unsigned long *bytes_done) + uint64_t *bytes_done) { int ret = 0; -- 2.25.1