From: Jens Axboe Date: Wed, 19 Jan 2011 05:33:02 +0000 (-0700) Subject: Remember to initialize return value in fixup_options() X-Git-Tag: fio-1.50-rc4~9 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=ff21745102e2410df4b950ca2ff774ad5ea717d1;p=fio.git Remember to initialize return value in fixup_options() Signed-off-by: Jens Axboe --- diff --git a/init.c b/init.c index 15adf385..4ce57a4f 100644 --- a/init.c +++ b/init.c @@ -248,7 +248,7 @@ static int fixed_block_size(struct thread_options *o) static int fixup_options(struct thread_data *td) { struct thread_options *o = &td->o; - int ret; + int ret = 0; #ifndef FIO_HAVE_PSHARED_MUTEX if (!o->use_thread) {