[PATCH] Signedness warning
authorJens Axboe <jens.axboe@oracle.com>
Wed, 1 Nov 2006 07:35:44 +0000 (08:35 +0100)
committerJens Axboe <jens.axboe@oracle.com>
Wed, 1 Nov 2006 07:35:44 +0000 (08:35 +0100)
Signed-off-by: Jens Axboe <jens.axboe@oracle.com>
fio.c

diff --git a/fio.c b/fio.c
index 52caa4e94627222957f5c46f6a123ac9cc319278..76710e19fba08166902c52cdb8218cda45235928 100644 (file)
--- a/fio.c
+++ b/fio.c
@@ -482,9 +482,9 @@ static void cleanup_io_u(struct thread_data *td)
 /*
  * "randomly" fill the buffer contents
  */
 /*
  * "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;
 
        while ((void *) ptr - io_u->buf < max_bs) {
                *ptr = rand() * 0x9e370001;