diff options
-rw-r--r-- | src/util/rb_tree_test.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/util/rb_tree_test.c b/src/util/rb_tree_test.c index a5952b3b52d..20a236d2eec 100644 --- a/src/util/rb_tree_test.c +++ b/src/util/rb_tree_test.c @@ -84,7 +84,7 @@ validate_tree_order(struct rb_tree *tree, unsigned expected_count) * show up in the list in order of insertion. We insert them * in the order they are in in the array. */ - if (prev == NULL || prev < n); + assert(prev == NULL || prev < n); } prev = n; @@ -105,7 +105,7 @@ validate_tree_order(struct rb_tree *tree, unsigned expected_count) * show up in the list in order of insertion. We insert them * in the order they are in in the array. */ - if (prev == NULL || prev > n); + assert(prev == NULL || prev > n); } prev = n; |