Commit a71db86e authored by Rasmus Villemoes's avatar Rasmus Villemoes Committed by Jiri Kosina

fs/btrfs/tree-log.c: Fix closing brace followed by if

Signed-off-by: default avatarRasmus Villemoes <linux@rasmusvillemoes.dk>
Reviewed-by: default avatarJosef Bacik <jbacik@fb.com>
Signed-off-by: default avatarJiri Kosina <jkosina@suse.cz>
parent 158c1294
...@@ -3980,7 +3980,8 @@ static int btrfs_log_inode(struct btrfs_trans_handle *trans, ...@@ -3980,7 +3980,8 @@ static int btrfs_log_inode(struct btrfs_trans_handle *trans,
if (ret < 0) { if (ret < 0) {
err = ret; err = ret;
goto out_unlock; goto out_unlock;
} if (ret) { }
if (ret) {
ins_nr = 0; ins_nr = 0;
btrfs_release_path(path); btrfs_release_path(path);
continue; continue;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment