fix warning about always true expression

result is a DWORD and DWRODs seem to be unsigned thus always >=0 thus
the check is useless clutter.
This commit is contained in:
Carsten Haitzler 2014-01-08 22:44:22 +09:00
parent f28f756584
commit 90afc354f7
1 changed files with 1 additions and 1 deletions

View File

@ -2166,7 +2166,7 @@ _ecore_main_win32_select(int nfds EINA_UNUSED,
res = 0;
}
else if ((result >= 0) && (result < WAIT_OBJECT_0 + events_nbr))
else if (result < WAIT_OBJECT_0 + events_nbr)
{
WSANETWORKEVENTS network_event;