From 2c8b49f41532e9be93a416847d01028b5a61fa86 Mon Sep 17 00:00:00 2001 From: Piotr Caban Date: Fri, 11 Feb 2022 23:41:30 +0100 Subject: [PATCH] msvcrtd/tests: Build without -DWINE_NO_LONG_TYPES. Signed-off-by: Piotr Caban Signed-off-by: Alexandre Julliard --- dlls/msvcrtd/tests/Makefile.in | 1 - dlls/msvcrtd/tests/debug.c | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/dlls/msvcrtd/tests/Makefile.in b/dlls/msvcrtd/tests/Makefile.in index e518e950905..d72b1d6a16d 100644 --- a/dlls/msvcrtd/tests/Makefile.in +++ b/dlls/msvcrtd/tests/Makefile.in @@ -1,4 +1,3 @@ -EXTRADEFS = -DWINE_NO_LONG_TYPES TESTDLL = msvcrtd.dll C_SRCS = \ diff --git a/dlls/msvcrtd/tests/debug.c b/dlls/msvcrtd/tests/debug.c index 2a232de4a49..50059ce1cb2 100644 --- a/dlls/msvcrtd/tests/debug.c +++ b/dlls/msvcrtd/tests/debug.c @@ -42,7 +42,7 @@ static BOOL init_functions(void) HMODULE hModule = LoadLibraryA("msvcrtd.dll"); if (!hModule) { - win_skip("LoadLibraryA failed to load msvcrtd.dll with GLE=%d\n", GetLastError()); + win_skip("LoadLibraryA failed to load msvcrtd.dll with GLE=%ld\n", GetLastError()); return FALSE; }