summaryrefslogtreecommitdiff
path: root/cord
diff options
context:
space:
mode:
authorIvan Maidanski <ivmai@mail.ru>2023-03-16 09:50:23 +0300
committerIvan Maidanski <ivmai@mail.ru>2023-03-16 15:21:13 +0300
commit7ef5517f91746af27b9ddc98c4e2defe087e516c (patch)
tree5e72da4f17dee029aeaac4d363af1e7174ec270b /cord
parent597a426ec4ddf294e2738b91d7ef5284b9989ea7 (diff)
downloadbdwgc-7ef5517f91746af27b9ddc98c4e2defe087e516c.tar.gz
Fix CORD_next() indent inside loops in test_basics() of cordtest
* cord/tests/cordtest.c (test_basics): Adjust indentation of CORD_next() call inside while loop.
Diffstat (limited to 'cord')
-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 ed42f3f0..346ff014 100644
--- a/cord/tests/cordtest.c
+++ b/cord/tests/cordtest.c
@@ -92,7 +92,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 *)(GC_word)13);
- CORD_next(p);
+ CORD_next(p);
}
if (count != 64*1024 + 2) ABORT("Position based iteration failed");