Fix block setup always returning 0

Another case of returning 0 instead of ret.

Signed-off-by: Zach Brown <zab@versity.com>
This commit is contained in:
Zach Brown
2021-03-18 16:39:03 -07:00
parent cbb031bb5d
commit accd680a7e

View File

@@ -1245,7 +1245,7 @@ out:
if (ret)
scoutfs_block_destroy(sb);
return 0;
return ret;
}
void scoutfs_block_destroy(struct super_block *sb)