Commit f658d9d1 authored by Eric Pouech's avatar Eric Pouech Committed by Alexandre Julliard

netstat: Enable compilation with long types.

parent d2a5c5ab
EXTRADEFS = -DWINE_NO_LONG_TYPES
MODULE = netstat.exe
IMPORTS = iphlpapi user32 ws2_32
......
......@@ -145,7 +145,7 @@ static WCHAR *NETSTAT_load_message(UINT id) {
static const WCHAR failedW[] = {'F','a','i','l','e','d','!','\0'};
if (!LoadStringW(GetModuleHandleW(NULL), id, msg, ARRAY_SIZE(msg))) {
WINE_FIXME("LoadString failed with %d\n", GetLastError());
WINE_FIXME("LoadString failed with %ld\n", GetLastError());
lstrcpyW(msg, failedW);
}
return msg;
......
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