fsutil: Enable compilation with long types.
Signed-off-by: Eric Pouech <eric.pouech@gmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
e299b5af34
commit
34b1c21d15
|
@ -1,4 +1,3 @@
|
|||
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);
|
||||
|
||||
|
|
Loading…
Reference in New Issue