Directly return dbg_check_nondata_nodes_order() instead of storing value in err and testing it.
Signed-off-by: Fabian Frederick <f...@skynet.be> --- fs/ubifs/gc.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/fs/ubifs/gc.c b/fs/ubifs/gc.c index 9718da8..bf0a3eb 100644 --- a/fs/ubifs/gc.c +++ b/fs/ubifs/gc.c @@ -301,10 +301,7 @@ static int sort_nodes(struct ubifs_info *c, struct ubifs_scan_leb *sleb, err = dbg_check_data_nodes_order(c, &sleb->nodes); if (err) return err; - err = dbg_check_nondata_nodes_order(c, nondata); - if (err) - return err; - return 0; + return dbg_check_nondata_nodes_order(c, nondata); } /** -- 2.4.0 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/