Kaydet (Commit) 6d334853 authored tarafından Nick Treleaven's avatar Nick Treleaven

Fix warning 'comparison between signed and unsigned integer expressions'

With gcc on Windows.
üst 0c7cf8df
......@@ -762,7 +762,11 @@ static gint socket_fd_check_io(gint fd, GIOCondition cond)
#endif
FD_ZERO(&fds);
#ifdef G_OS_WIN32
FD_SET((SOCKET)fd, &fds);
#else
FD_SET(fd, &fds);
#endif
if (cond == G_IO_IN)
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment