From 7ef5517f91746af27b9ddc98c4e2defe087e516c Mon Sep 17 00:00:00 2001 From: Ivan Maidanski Date: Thu, 16 Mar 2023 09:50:23 +0300 Subject: 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. --- cord/tests/cordtest.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cord') 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"); -- cgit v1.2.1