From 9173eeaa86d198bac0193a7fd03b02b9bf5c3796 Mon Sep 17 00:00:00 2001 From: Eric Pouech Date: Thu, 10 Feb 2022 08:42:25 +0100 Subject: [PATCH] faultrep: Enable compilation with long types. Signed-off-by: Eric Pouech Signed-off-by: Alexandre Julliard --- dlls/faultrep/Makefile.in | 1 - dlls/faultrep/faultrep.c | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/dlls/faultrep/Makefile.in b/dlls/faultrep/Makefile.in index b28485eb9d8..9e054425781 100644 --- a/dlls/faultrep/Makefile.in +++ b/dlls/faultrep/Makefile.in @@ -1,4 +1,3 @@ -EXTRADEFS = -DWINE_NO_LONG_TYPES MODULE = faultrep.dll IMPORTLIB = faultrep IMPORTS = advapi32 diff --git a/dlls/faultrep/faultrep.c b/dlls/faultrep/faultrep.c index e45f3e0a2d1..b9207426970 100644 --- a/dlls/faultrep/faultrep.c +++ b/dlls/faultrep/faultrep.c @@ -100,6 +100,6 @@ BOOL WINAPI AddERExcludedApplicationA(LPCSTR lpAppFileName) */ EFaultRepRetVal WINAPI ReportFault(LPEXCEPTION_POINTERS pep, DWORD dwOpt) { - FIXME("%p 0x%x stub\n", pep, dwOpt); + FIXME("%p 0x%lx stub\n", pep, dwOpt); return frrvOk; }