]> Git Repo - linux.git/commitdiff
hpfs: fix warning due to superfluous semicolon
authorZou Wei <[email protected]>
Sat, 6 Jun 2020 16:57:41 +0000 (18:57 +0200)
committerLinus Torvalds <[email protected]>
Sat, 6 Jun 2020 17:08:17 +0000 (10:08 -0700)
Fixes coccicheck warning:

  fs/hpfs/buffer.c:56:2-3: Unneeded semicolon

Reported-by: Hulk Robot <[email protected]>
Signed-off-by: Zou Wei <[email protected]>
Signed-off-by: Mikulas Patocka <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
fs/hpfs/buffer.c

index e285d6b3bba415d14269fac1460c2a581bf2d355..d39246865c513cc9feee6502a97a74e977d6c56f 100644 (file)
@@ -53,7 +53,7 @@ void hpfs_prefetch_sectors(struct super_block *s, unsigned secno, int n)
                        return;
                }
                brelse(bh);
-       };
+       }
 
        blk_start_plug(&plug);
        while (n > 0) {
This page took 0.052754 seconds and 4 git commands to generate.