X-Git-Url: https://git.kernel.dk/?p=fio.git;a=blobdiff_plain;f=io_u.c;h=0f455cfd916d7ac5c8c6b3a69f7d83f66c8a24a3;hp=0ffae29c9f035a2d387ad00b0ae7d882ac0515b3;hb=126d65c6fc97d6acdc568aa5a969c012018daf15;hpb=4c3ecec4160909d7eba4acf1a07a8a0cd36a6365 diff --git a/io_u.c b/io_u.c index 0ffae29c..0f455cfd 100644 --- a/io_u.c +++ b/io_u.c @@ -561,7 +561,7 @@ static struct fio_file *get_next_file_rand(struct thread_data *td, int goodf, long r = os_random_long(&td->next_file_state); fno = (unsigned int) ((double) td->o.nr_files * (r / (RAND_MAX + 1.0))); - f = &td->files[fno]; + f = td->files[fno]; if (f->flags & FIO_FILE_DONE) continue; @@ -582,7 +582,7 @@ static struct fio_file *get_next_file_rr(struct thread_data *td, int goodf, struct fio_file *f; do { - f = &td->files[td->next_file]; + f = td->files[td->next_file]; td->next_file++; if (td->next_file >= td->o.nr_files)