X-Git-Url: https://git.kernel.dk/?p=fio.git;a=blobdiff_plain;f=engines%2Fnull.c;h=4cc0102b993e64a01e5f1804ea6a6ccfe7951a36;hp=b1718e5c9a35fea7826fadcff340762e373c0e14;hb=2e4ef4fbd69eb6d4c07f2f362463e3f3df2e808c;hpb=4634d057febe9b4d7028e6f02963a8fd8996ac6a;ds=sidebyside diff --git a/engines/null.c b/engines/null.c index b1718e5c..4cc0102b 100644 --- a/engines/null.c +++ b/engines/null.c @@ -56,8 +56,8 @@ static int null_commit(struct thread_data *td, struct null_data *nd) return 0; } -static enum fio_q_status -null_queue(struct thread_data *td, struct null_data *nd, struct io_u *io_u) +static enum fio_q_status null_queue(struct thread_data *td, + struct null_data *nd, struct io_u *io_u) { fio_ro_check(td, io_u); @@ -118,8 +118,8 @@ static int fio_null_commit(struct thread_data *td) return null_commit(td, td->io_ops_data); } -static enum fio_q_status -fio_null_queue(struct thread_data *td, struct io_u *io_u) +static enum fio_q_status fio_null_queue(struct thread_data *td, + struct io_u *io_u) { return null_queue(td, td->io_ops_data, io_u); }