From: Jens Axboe Date: Wed, 17 Apr 2013 17:21:14 +0000 (+0200) Subject: null: 'td' isn't actually unused, unmark it X-Git-Tag: fio-2.1~28 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=f0c48a70c5cb8e9f04d263999e0b8d9188f08562;p=fio.git null: 'td' isn't actually unused, unmark it Signed-off-by: Jens Axboe --- diff --git a/engines/null.c b/engines/null.c index f4345503..bf7885e9 100644 --- a/engines/null.c +++ b/engines/null.c @@ -54,7 +54,7 @@ static int fio_null_commit(struct thread_data *td) return 0; } -static int fio_null_queue(struct thread_data fio_unused *td, struct io_u *io_u) +static int fio_null_queue(struct thread_data *td, struct io_u *io_u) { struct null_data *nd = td->io_ops->data;