diff options
author | Nobuyoshi Nakada <[email protected]> | 2022-07-27 18:42:27 +0900 |
---|---|---|
committer | Nobuyoshi Nakada <[email protected]> | 2022-07-27 18:42:27 +0900 |
commit | f42230ff2210647d480d02a381065359be993015 (patch) | |
tree | b56f825079885aa90cb274bf76a602bafdeec0e8 /thread_pthread.c | |
parent | 8b9d4b2ce64d496454428292b8d723878906c966 (diff) |
Adjust styles [ci skip]
Diffstat (limited to 'thread_pthread.c')
-rw-r--r-- | thread_pthread.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/thread_pthread.c b/thread_pthread.c index e748797fe7..c29c7e1958 100644 --- a/thread_pthread.c +++ b/thread_pthread.c @@ -146,7 +146,8 @@ rb_internal_thread_remove_event_hook(rb_internal_thread_event_hook_t * hook) if (rb_internal_thread_event_hooks == hook) { ATOMIC_PTR_EXCHANGE(rb_internal_thread_event_hooks, hook->next); success = TRUE; - } else { + } + else { rb_internal_thread_event_hook_t *h = rb_internal_thread_event_hooks; do { |