Module: wine Branch: master Commit: aedb86a46f48626839f3ae9253470a13bd9c29a3 URL: http://source.winehq.org/git/wine.git/?a=commit;h=aedb86a46f48626839f3ae9253...
Author: Frédéric Delanoy frederic.delanoy@gmail.com Date: Mon Oct 7 22:49:40 2013 +0200
ws2_32: Use BOOL type where appropriate.
---
dlls/ws2_32/socket.c | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/dlls/ws2_32/socket.c b/dlls/ws2_32/socket.c index 1b1815c..679258b 100644 --- a/dlls/ws2_32/socket.c +++ b/dlls/ws2_32/socket.c @@ -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;