io_uring: remove duplicate semicolon at the end of line
Remove duplicate semicolon at the end of line in io_file_from_index() Signed-off-by: Xiaoming Ni <nixiaoming@huawei.com> Signed-off-by: Jens Axboe <axboe@kernel.dk>
This commit is contained in:
parent
7d01bd745a
commit
8469508951
|
@ -5364,7 +5364,7 @@ static inline struct file *io_file_from_index(struct io_ring_ctx *ctx,
|
|||
struct fixed_file_table *table;
|
||||
|
||||
table = &ctx->file_data->table[index >> IORING_FILE_TABLE_SHIFT];
|
||||
return table->files[index & IORING_FILE_TABLE_MASK];;
|
||||
return table->files[index & IORING_FILE_TABLE_MASK];
|
||||
}
|
||||
|
||||
static int io_file_get(struct io_submit_state *state, struct io_kiocb *req,
|
||||
|
|
Loading…
Reference in New Issue