Commit 34b1c21d authored by Eric Pouech's avatar Eric Pouech Committed by Alexandre Julliard

fsutil: Enable compilation with long types.

parent e299b5af
EXTRADEFS = -DWINE_NO_LONG_TYPES
MODULE = fsutil.exe
IMPORTS = user32
......
......@@ -59,7 +59,7 @@ static int WINAPIV output_string(int msg, ...)
va_end(arguments);
if (len == 0 && GetLastError() != NO_ERROR)
WINE_FIXME("Could not format string: le=%u, msg=%d\n", GetLastError(), msg);
WINE_FIXME("Could not format string: le=%lu, msg=%d\n", GetLastError(), msg);
else
output_write(out, len);
......
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