Eric Pouech : faultrep: Enable compilation with long types.

Alexandre Julliard julliard at winehq.org
Thu Feb 10 16:10:28 CST 2022


Module: wine
Branch: master
Commit: 9173eeaa86d198bac0193a7fd03b02b9bf5c3796
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=9173eeaa86d198bac0193a7fd03b02b9bf5c3796

Author: Eric Pouech <eric.pouech at gmail.com>
Date:   Thu Feb 10 08:42:25 2022 +0100

faultrep: Enable compilation with long types.

Signed-off-by: Eric Pouech <eric.pouech at gmail.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 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;
 }




More information about the wine-cvs mailing list