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 19:41:57 +0300
commitfbf715c53879620d907458f124cd6b490bb6ed2f (patch)
tree10985ba467d2af7ebcc6e1c68829471bb6acba10
parentd7ccaa3cc9100db22a7028175625d2e0e23a79ee (diff)
downloadbdwgc-fbf715c53879620d907458f124cd6b490bb6ed2f.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.
-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 57cbfd55..2a720480 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");