Btrfs: use BUG_ON
authorHIMANGI SARAOGI <himangi774@gmail.com>
Tue, 8 Jul 2014 22:21:41 +0000 (03:51 +0530)
committerChris Mason <clm@fb.com>
Wed, 17 Sep 2014 20:37:34 +0000 (13:37 -0700)
Use BUG_ON(x) rather than if(x) BUG();

The semantic patch that fixes this problem is as follows:

// <smpl>
@@ identifier x; @@
-if (x) BUG();
+BUG_ON(x);
// </smpl>

Signed-off-by: Himangi Saraogi <himangi774@gmail.com>
Acked-by: Julia Lawall <julia.lawall@lip6.fr>
Signed-off-by: Chris Mason <clm@fb.com>

No differences found