iphlpapi: Do not cast zero.
diff --git a/dlls/iphlpapi/iphlpapi_main.c b/dlls/iphlpapi/iphlpapi_main.c index a2ec4b2..c7a4a3f 100644 --- a/dlls/iphlpapi/iphlpapi_main.c +++ b/dlls/iphlpapi/iphlpapi_main.c
@@ -422,7 +422,7 @@ { FIXME("(pRoute %p): stub\n", pRoute); /* could use SIOCADDRT, not sure I want to */ - return (DWORD) 0; + return 0; } @@ -445,7 +445,7 @@ { FIXME("(pArpEntry %p)\n", pArpEntry); /* could use SIOCSARP on systems that support it, not sure I want to */ - return (DWORD) 0; + return 0; } @@ -515,7 +515,7 @@ { FIXME("(pRoute %p): stub\n", pRoute); /* could use SIOCDELRT, not sure I want to */ - return (DWORD) 0; + return 0; } @@ -538,7 +538,7 @@ { FIXME("(pArpEntry %p): stub\n", pArpEntry); /* could use SIOCDARP on systems that support it, not sure I want to */ - return (DWORD) 0; + return 0; } @@ -1933,7 +1933,7 @@ /* this is to add a route entry, how's it distinguishable from CreateIpForwardEntry? could use SIOCADDRT, not sure I want to */ - return (DWORD) 0; + return 0; } @@ -1956,7 +1956,7 @@ { FIXME("(pArpEntry %p): stub\n", pArpEntry); /* same as CreateIpNetEntry here, could use SIOCSARP, not sure I want to */ - return (DWORD) 0; + return 0; } @@ -1978,7 +1978,7 @@ DWORD WINAPI SetIpStatistics(PMIB_IPSTATS pIpStats) { FIXME("(pIpStats %p): stub\n", pIpStats); - return (DWORD) 0; + return 0; } @@ -2002,7 +2002,7 @@ FIXME("(nTTL %d): stub\n", nTTL); /* could echo nTTL > /proc/net/sys/net/ipv4/ip_default_ttl, not sure I want to. Could map EACCESS to ERROR_ACCESS_DENIED, I suppose */ - return (DWORD) 0; + return 0; } @@ -2024,7 +2024,7 @@ DWORD WINAPI SetTcpEntry(PMIB_TCPROW pTcpRow) { FIXME("(pTcpRow %p): stub\n", pTcpRow); - return (DWORD) 0; + return 0; }