summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIvan Maidanski <ivmai@mail.ru>2023-03-16 09:50:23 +0300
committerIvan Maidanski <ivmai@mail.ru>2023-04-28 22:11:15 +0300
commitcd4e81c2bf2b12f1541516935918a51a56b76f58 (patch)
tree80ee845d4a877f7d85834081be5c7604b6f8ba27
parentc34e2710f23d74eb9c0b3777bd384374a7b24a18 (diff)
downloadbdwgc-cd4e81c2bf2b12f1541516935918a51a56b76f58.tar.gz
Fix CORD_next() indent inside loops in test_basics() of cordtest
(a cherry-pick of commit 6c4bc6337 from 'release-7_6') * cord/tests/cordtest.c (test_basics): Adjust indentation of CORD_next() call inside while loop.
-rw-r--r--cord/tests/cordtest.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cord/tests/cordtest.c b/cord/tests/cordtest.c
index 061430df..5d6f60d9 100644
--- a/cord/tests/cordtest.c
+++ b/cord/tests/cordtest.c
@@ -78,7 +78,7 @@ void test_basics(void)
CORD_set_pos(p, x, 64*1024-1);
while(CORD_pos_valid(p)) {
(void) test_fn(CORD_pos_fetch(p), (void *)13);
- CORD_next(p);
+ CORD_next(p);
}
if (count != 64*1024 + 2) ABORT("Position based iteration failed");