aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Rix <[email protected]>2020-11-01 07:30:08 -0800
committerDavid Sterba <[email protected]>2020-12-08 15:54:13 +0100
commit445d8ab53f69f4c4062b668c6a25b88a79753136 (patch)
tree8723e236230ec50e56e68992328051f5f97c9b12
parent95b982de37473a99add60c9e68b12d54354f1da7 (diff)
btrfs: sysfs: remove unneeded semicolon
A semicolon is not needed after a switch statement. Signed-off-by: Tom Rix <[email protected]> Reviewed-by: David Sterba <[email protected]> Signed-off-by: David Sterba <[email protected]>
-rw-r--r--fs/btrfs/sysfs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/btrfs/sysfs.c b/fs/btrfs/sysfs.c
index 640d17f6ace1..293338153c20 100644
--- a/fs/btrfs/sysfs.c
+++ b/fs/btrfs/sysfs.c
@@ -1311,7 +1311,7 @@ static const char *alloc_name(u64 flags)
default:
WARN_ON(1);
return "invalid-combination";
- };
+ }
}
/*