diff options
author | Rasmus Villemoes <linux@rasmusvillemoes.dk> | 2014-06-20 21:51:43 +0200 |
---|---|---|
committer | Jiri Kosina <jkosina@suse.cz> | 2014-08-26 09:35:51 +0200 |
commit | a71db86e86e0a1b28ffebe6b161f4a628911ebaf (patch) | |
tree | 371f28bc786a6ed55fa6615a91111f36a6bace0c | |
parent | 158c12948f3012fbe15f066f308db23502d3db0a (diff) | |
download | linux-next-a71db86e86e0a1b28ffebe6b161f4a628911ebaf.tar.gz |
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>
-rw-r--r-- | fs/btrfs/tree-log.c | 3 |
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; |