X-Git-Url: https://git.kernel.dk/?p=fio.git;a=blobdiff_plain;f=fio.c;h=76710e19fba08166902c52cdb8218cda45235928;hp=52caa4e94627222957f5c46f6a123ac9cc319278;hb=66eeb2963730871049b7d938c685188ef63d865a;hpb=6b9cea23c22c218625b68eca63da38089b299846 diff --git a/fio.c b/fio.c index 52caa4e9..76710e19 100644 --- a/fio.c +++ b/fio.c @@ -482,9 +482,9 @@ static void cleanup_io_u(struct thread_data *td) /* * "randomly" fill the buffer contents */ -static void fill_rand_buf(struct io_u *io_u, unsigned int max_bs) +static void fill_rand_buf(struct io_u *io_u, int max_bs) { - unsigned int *ptr = io_u->buf; + int *ptr = io_u->buf; while ((void *) ptr - io_u->buf < max_bs) { *ptr = rand() * 0x9e370001;