From 5f2b7b5e41487109a6aebd80cb8c2c7ce900d47e Mon Sep 17 00:00:00 2001 From: Jens Axboe Date: Fri, 17 Feb 2006 11:34:47 +0100 Subject: [PATCH] [PATCH] Silence bogus gcc 4.x warnings --- fio-io.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fio-io.c b/fio-io.c index 46cd11a7..3f55a19c 100644 --- a/fio-io.c +++ b/fio-io.c @@ -461,7 +461,7 @@ int fio_mmapio_init(struct thread_data *td) #ifdef FIO_HAVE_SGIO struct sgio_cmd { - char cdb[10]; + unsigned char cdb[10]; int nr; }; @@ -497,7 +497,7 @@ static int fio_sgio_getevents(struct thread_data *td, int min, int max, struct sgio_data *sd = td->io_data; struct pollfd pfd = { .fd = td->fd, .events = POLLIN }; void *buf = malloc(max * sizeof(struct sg_io_hdr)); - int left = max, ret, events, i, r = 0, fl; + int left = max, ret, events, i, r = 0, fl = 0; /* * don't block for !events -- 2.25.1