aboutsummaryrefslogtreecommitdiffstats
path: root/thread.c
diff options
context:
space:
mode:
Diffstat (limited to 'thread.c')
-rw-r--r--thread.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/thread.c b/thread.c
index d9d497ad6c..80550eeaaa 100644
--- a/thread.c
+++ b/thread.c
@@ -2471,7 +2471,7 @@ rb_fd_rcopy(fd_set *dst, rb_fdset_t *src)
/* we assume src is the result of select() with dst, so dst should be
* larger or equal than src. */
- if (max > FD_SETSIZE || max > dst->fd_count) {
+ if (max > FD_SETSIZE || (UINT)max > dst->fd_count) {
rb_raise(rb_eArgError, "too large fdsets");
}