Skip to content

Commit

Permalink
reiserfs: Fix compilation breakage with CONFIG_REISERFS_CHECK
Browse files Browse the repository at this point in the history
There was a bug in debug printout when CONFIG_REISERFS_CHECK was
enabled so one of the assertions in do_balan.c didn't compile. Fix it.

Fixes: 0080e9f
Signed-off-by: Jan Kara <jack@suse.cz>
  • Loading branch information
Jan Kara committed Jun 11, 2014
1 parent 166418c commit 19ef122
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fs/reiserfs/do_balan.c
Original file line number Diff line number Diff line change
Expand Up @@ -1249,7 +1249,7 @@ static void balance_leaf_new_nodes(struct tree_balance *tb,
|| buffer_journal_dirty(tb->S_new[i])
|| buffer_dirty(tb->S_new[i]),
"PAP-12247: S_new[%d] : (%b)",
i, format_bh(tb->S_new[i]));
i, tb->S_new[i]);
}
}

Expand Down

0 comments on commit 19ef122

Please sign in to comment.