diff options
author | Joe Perches <joe@perches.com> | 2009-07-06 02:33:08 (GMT) |
---|---|---|
committer | Theodore Ts'o <tytso@mit.edu> | 2009-07-06 02:33:08 (GMT) |
commit | 5a4a798937f92413cb7dbdb6bd554186024092e9 (patch) | |
tree | bbd4d948dfa72f4779dd0ebf96abd948a707ee49 | |
parent | 6487a9d3b5476ffd1bbbe97e58cf26dbeb7a5d4a (diff) | |
download | linux-fsl-qoriq-5a4a798937f92413cb7dbdb6bd554186024092e9.tar.xz |
ext4: Remove unnecessary semicolons in mballoc.c
Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
-rw-r--r-- | fs/ext4/mballoc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ext4/mballoc.c b/fs/ext4/mballoc.c index cf99720..ba49e0c 100644 --- a/fs/ext4/mballoc.c +++ b/fs/ext4/mballoc.c @@ -2532,7 +2532,7 @@ int ext4_mb_add_groupinfo(struct super_block *sb, ext4_group_t group, INIT_LIST_HEAD(&meta_group_info[i]->bb_prealloc_list); init_rwsem(&meta_group_info[i]->alloc_sem); - meta_group_info[i]->bb_free_root.rb_node = NULL;; + meta_group_info[i]->bb_free_root.rb_node = NULL; #ifdef DOUBLE_CHECK { |