From 48ec9be1eba930b06050262a1a651d794c31bc11 Mon Sep 17 00:00:00 2001 From: "Luke T. Shumaker" Date: Wed, 2 Oct 2024 15:47:47 -0600 Subject: trim trailing ws --- libcr/coroutine.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libcr') diff --git a/libcr/coroutine.c b/libcr/coroutine.c index be8d378..bc67cbb 100644 --- a/libcr/coroutine.c +++ b/libcr/coroutine.c @@ -406,7 +406,7 @@ cid_t coroutine_add_with_stack_size(size_t stack_size, cr_fn_t fn, void *args) { stack_pattern[i%sizeof(stack_pattern)]; #endif - coroutine_running = child; + coroutine_running = child; coroutine_table[child-1].state = CR_INITIALIZING; if (!cr_plat_setjmp(coroutine_add_env)) { /* point=a */ void *stack_base = coroutine_table[child-1].stack -- cgit v1.2.3-2-g168b