summaryrefslogtreecommitdiffstats
path: root/fs/btrfs/tree-log.c
diff options
context:
space:
mode:
authorRasmus Villemoes2014-06-20 21:51:43 +0200
committerJiri Kosina2014-08-26 09:35:51 +0200
commita71db86e86e0a1b28ffebe6b161f4a628911ebaf (patch)
tree371f28bc786a6ed55fa6615a91111f36a6bace0c /fs/btrfs/tree-log.c
parentMerge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jik... (diff)
downloadkernel-qcow2-linux-a71db86e86e0a1b28ffebe6b161f4a628911ebaf.tar.gz
kernel-qcow2-linux-a71db86e86e0a1b28ffebe6b161f4a628911ebaf.tar.xz
kernel-qcow2-linux-a71db86e86e0a1b28ffebe6b161f4a628911ebaf.zip
fs/btrfs/tree-log.c: Fix closing brace followed by if
Signed-off-by: Rasmus Villemoes <linux@rasmusvillemoes.dk> Reviewed-by: Josef Bacik <jbacik@fb.com> Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Diffstat (limited to 'fs/btrfs/tree-log.c')
-rw-r--r--fs/btrfs/tree-log.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/fs/btrfs/tree-log.c b/fs/btrfs/tree-log.c
index 9e1f2cd5e67a..50af2b96df6c 100644
--- a/fs/btrfs/tree-log.c
+++ b/fs/btrfs/tree-log.c
@@ -3980,7 +3980,8 @@ again:
if (ret < 0) {
err = ret;
goto out_unlock;
- } if (ret) {
+ }
+ if (ret) {
ins_nr = 0;
btrfs_release_path(path);
continue;