mirror of
https://github.com/jemalloc/jemalloc.git
synced 2026-07-24 13:53:11 +00:00
Convert to uniform style: cond == false --> !cond
This commit is contained in:
@@ -162,8 +162,7 @@ TEST_BEGIN(test_insert_iter_remove)
|
||||
|
||||
memset(seen, 0, sizeof(seen));
|
||||
|
||||
for (tabind = 0; ckh_iter(&ckh, &tabind, &q, &r) ==
|
||||
false;) {
|
||||
for (tabind = 0; !ckh_iter(&ckh, &tabind, &q, &r);) {
|
||||
size_t k;
|
||||
|
||||
assert_ptr_eq(q, r, "Key and val not equal");
|
||||
|
||||
Reference in New Issue
Block a user