Skip to content

Commit

Permalink
use uint32_t instead of __uint32_t
Browse files Browse the repository at this point in the history
  • Loading branch information
ko1 committed Oct 13, 2023
1 parent 842d9c0 commit b193c5e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion thread_pthread_mn.c
Original file line number Diff line number Diff line change
Expand Up @@ -562,7 +562,7 @@ timer_thread_register_waiting(rb_thread_t *th, int fd, enum thread_sched_waiting
flags |= thread_sched_waiting_timeout;
}

__uint32_t epoll_events = 0;
uint32_t epoll_events = 0;
if (flags & thread_sched_waiting_timeout) {
VM_ASSERT(rel != NULL);
abs = rb_hrtime_add(rb_hrtime_now(), *rel);
Expand Down

0 comments on commit b193c5e

Please sign in to comment.