mirror of
https://gitlab.freedesktop.org/dbus/dbus.git
synced 2026-05-05 13:28:02 +02:00
Fix return type and usage of WSAWaitForMultipleEvents()
The former int type leads to warnings.
This commit is contained in:
parent
b09ba846aa
commit
2658b2571c
1 changed files with 3 additions and 3 deletions
|
|
@ -1287,7 +1287,7 @@ _dbus_poll_events (DBusPollFD *fds,
|
|||
{
|
||||
int ret = 0;
|
||||
int i;
|
||||
int ready;
|
||||
DWORD ready;
|
||||
|
||||
#define DBUS_STACK_WSAEVENTS 256
|
||||
WSAEVENT eventsOnStack[DBUS_STACK_WSAEVENTS];
|
||||
|
|
@ -1338,7 +1338,7 @@ _dbus_poll_events (DBusPollFD *fds,
|
|||
|
||||
ready = WSAWaitForMultipleEvents (n_fds, pEvents, FALSE, timeout_milliseconds, FALSE);
|
||||
|
||||
if (DBUS_SOCKET_API_RETURNS_ERROR (ready))
|
||||
if (ready == WSA_WAIT_FAILED)
|
||||
{
|
||||
DBUS_SOCKET_SET_ERRNO ();
|
||||
if (errno != WSAEWOULDBLOCK)
|
||||
|
|
@ -1350,7 +1350,7 @@ _dbus_poll_events (DBusPollFD *fds,
|
|||
_dbus_verbose ("WSAWaitForMultipleEvents: WSA_WAIT_TIMEOUT\n");
|
||||
ret = 0;
|
||||
}
|
||||
else if (ready >= WSA_WAIT_EVENT_0 && ready < (int)(WSA_WAIT_EVENT_0 + n_fds))
|
||||
else if (ready < (WSA_WAIT_EVENT_0 + n_fds))
|
||||
{
|
||||
for (i = 0; i < n_fds; i++)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue