ws2_32: Use BOOL type where appropriate.

oldstable
Frédéric Delanoy 2013-10-07 22:49:40 +02:00 committed by Alexandre Julliard
parent 1214fb41dd
commit aedb86a46f
1 changed files with 2 additions and 1 deletions

View File

@ -5065,7 +5065,8 @@ static struct WS_hostent* WS_get_local_ips( char *hostname )
for (n = 0; n < routes->dwNumEntries; n++)
{
IF_INDEX ifindex;
DWORD ifmetric, exists = FALSE;
DWORD ifmetric;
BOOL exists = FALSE;
if (routes->table[n].u1.ForwardType != MIB_IPROUTE_TYPE_DIRECT)
continue;