backend: fix should_check_rate() typo in wait_for_completions()
[fio.git] / backend.c
index 7c6fc9b0478818d3443bf3c84554dfc090f24087..3424a0982b534bc60b8ea037814427e9156b929f 100644 (file)
--- a/backend.c
+++ b/backend.c
@@ -432,7 +432,7 @@ static int wait_for_completions(struct thread_data *td, struct timeval *time,
        if (full && !min_evts)
                min_evts = 1;
 
-       if (time && (should_check_rate(td, DDIR_READ) ||
+       if (time && (__should_check_rate(td, DDIR_READ) ||
            __should_check_rate(td, DDIR_WRITE) ||
            __should_check_rate(td, DDIR_TRIM)))
                fio_gettime(time, NULL);