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:
Eric Pouech 2022-02-04 09:56:38 +01:00 committed by Alexandre Julliard
parent e299b5af34
commit 34b1c21d15
2 changed files with 1 additions and 2 deletions

View File

@ -1,4 +1,3 @@
EXTRADEFS = -DWINE_NO_LONG_TYPES
MODULE = fsutil.exe
IMPORTS = user32

View File

@ -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);