summaryrefslogtreecommitdiff
path: root/thread.c
diff options
context:
space:
mode:
authorNobuyoshi Nakada <[email protected]>2024-01-08 00:50:41 +0900
committerNobuyoshi Nakada <[email protected]>2024-01-08 00:50:41 +0900
commitc30b8ae947e4e0e01df74b07282b27b1b1c70df8 (patch)
tree3ea69f4cc26dee64542b0230aa1fab17a45d1182 /thread.c
parent76c20b06aa16686d047af5cb21300602153e0e46 (diff)
Adjust styles and indents [ci skip]
Diffstat (limited to 'thread.c')
-rw-r--r--thread.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/thread.c b/thread.c
index 34986ebbe6..a402102435 100644
--- a/thread.c
+++ b/thread.c
@@ -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;
}
}
}