From: Jens Axboe Date: Wed, 23 Jan 2013 20:35:14 +0000 (-0700) Subject: Fix 32-bit compile warning in should_check_rate() X-Git-Tag: fio-2.0.14~97 X-Git-Url: https://git.kernel.dk/?p=fio.git;a=commitdiff_plain;h=aa83321fca5bb46d593d19d3863f511f80c01639;hp=32bbd3ab7846a8c140fda5c83d95c21c447c844c Fix 32-bit compile warning in should_check_rate() Introduced with the change from unsigned long -> uint64_T Signed-off-by: Jens Axboe --- 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;