Commit c053e668 authored by Gerald Pfeifer's avatar Gerald Pfeifer Committed by Alexandre Julliard

iphlpapi: Make addrLen unsigned in getInterfacePhysicalByName.

parent 4ecd6e79
......@@ -473,7 +473,7 @@ static DWORD getInterfacePhysicalByName(const char *name, PDWORD len, PBYTE addr
u_char *p, *buf;
size_t mibLen;
int mib[] = { CTL_NET, AF_ROUTE, 0, AF_LINK, NET_RT_IFLIST, 0 };
int addrLen;
unsigned addrLen;
BOOL found = FALSE;
if (!name || !len || !addr || !type)
......
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