diff options
author | Luke T. Shumaker <lukeshu@lukeshu.com> | 2024-10-02 15:47:47 -0600 |
---|---|---|
committer | Luke T. Shumaker <lukeshu@lukeshu.com> | 2024-10-02 15:47:47 -0600 |
commit | 48ec9be1eba930b06050262a1a651d794c31bc11 (patch) | |
tree | 8ac174746a71efe3c0babe82cd410a6f49b3a59b /libcr | |
parent | 45b0b2d85fbc284453056c0768c7646df1de9b52 (diff) |
trim trailing ws
Diffstat (limited to 'libcr')
-rw-r--r-- | libcr/coroutine.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 |