diff options
author | Nobuyoshi Nakada <[email protected]> | 2024-01-08 00:50:41 +0900 |
---|---|---|
committer | Nobuyoshi Nakada <[email protected]> | 2024-01-08 00:50:41 +0900 |
commit | c30b8ae947e4e0e01df74b07282b27b1b1c70df8 (patch) | |
tree | 3ea69f4cc26dee64542b0230aa1fab17a45d1182 /thread.c | |
parent | 76c20b06aa16686d047af5cb21300602153e0e46 (diff) |
Adjust styles and indents [ci skip]
Diffstat (limited to 'thread.c')
-rw-r--r-- | thread.c | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -410,12 +410,12 @@ rb_threadptr_join_list_wakeup(rb_thread_t *thread) rb_threadptr_interrupt(target_thread); switch (target_thread->status) { - case THREAD_STOPPED: - case THREAD_STOPPED_FOREVER: - target_thread->status = THREAD_RUNNABLE; - break; - default: - break; + case THREAD_STOPPED: + case THREAD_STOPPED_FOREVER: + target_thread->status = THREAD_RUNNABLE; + break; + default: + break; } } } |