backend: Removing double definition of the same variable
authorErwan Velu <erwan@redhat.com>
Tue, 3 Oct 2017 09:06:37 +0000 (11:06 +0200)
committerJens Axboe <axboe@kernel.dk>
Tue, 3 Oct 2017 15:06:33 +0000 (09:06 -0600)
commit05d9d86e06f8944f3b5c494058f4844619f7d650
tree1f1145e2a2dbbcb1a5b35af027f6d1b11f19c4eb
parentb5407f8bee92692740cdbeca60ab1ba8b86a9b86
backend: Removing double definition of the same variable

While f is defined as "struct fio_file *f = io_u->file;", it's pretty
useless to define it just before its usage.

This patch simply remove the 2nd definition of f.

Signed-off-by: Jens Axboe <axboe@kernel.dk>
backend.c