mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00
md/raid1: Fix trailing semicolon
The trailing semicolon is an empty statement that does no operation. Removing it since it doesn't do anything. Signed-off-by: Luis de Bethencourt <luisbg@kernel.org> Signed-off-by: Shaohua Li <sh.li@alibaba-inc.com>
This commit is contained in:
parent
565e045012
commit
56a64c177a
1 changed files with 1 additions and 1 deletions
|
@ -1108,7 +1108,7 @@ static void alloc_behind_master_bio(struct r1bio *r1_bio,
|
|||
|
||||
bio_copy_data(behind_bio, bio);
|
||||
skip_copy:
|
||||
r1_bio->behind_master_bio = behind_bio;;
|
||||
r1_bio->behind_master_bio = behind_bio;
|
||||
set_bit(R1BIO_BehindIO, &r1_bio->state);
|
||||
|
||||
return;
|
||||
|
|
Loading…
Add table
Reference in a new issue