Skip to content

Commit

Permalink
WIP: indent
Browse files Browse the repository at this point in the history
  • Loading branch information
ko1 committed Aug 18, 2023
1 parent bf59ab5 commit 3c5f80e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions thread_pthread.c
Original file line number Diff line number Diff line change
Expand Up @@ -3237,9 +3237,9 @@ timer_thread_func(void *ptr)
(events & EPOLLIN) ? "in/" : "",
(events & EPOLLOUT) ? "out/" : "",
(events & EPOLLRDHUP) ? "RDHUP/" : "",
(events & EPOLLPRI) ? "pri/" : "",
(events & EPOLLERR) ? "err/" : "",
(events & EPOLLHUP) ? "hup/" : "");
(events & EPOLLPRI) ? "pri/" : "",
(events & EPOLLERR) ? "err/" : "",
(events & EPOLLHUP) ? "hup/" : "");

rb_native_mutex_lock(&timer_th.waiting_lock);
{
Expand Down

0 comments on commit 3c5f80e

Please sign in to comment.