Eric Pouech : fontsub: Enable compilation with long types.

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


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

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

fontsub: 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/fontsub/Makefile.in | 1 -
 dlls/fontsub/main.c      | 2 +-
 2 files changed, 1 insertion(+), 2 deletions(-)

diff --git a/dlls/fontsub/Makefile.in b/dlls/fontsub/Makefile.in
index 1c4a4c47481..338af096ccb 100644
--- a/dlls/fontsub/Makefile.in
+++ b/dlls/fontsub/Makefile.in
@@ -1,4 +1,3 @@
-EXTRADEFS = -DWINE_NO_LONG_TYPES
 MODULE = fontsub.dll
 
 EXTRADLLFLAGS = -Wb,--prefer-native
diff --git a/dlls/fontsub/main.c b/dlls/fontsub/main.c
index 17bc0c7cc70..1f99c86d953 100644
--- a/dlls/fontsub/main.c
+++ b/dlls/fontsub/main.c
@@ -31,7 +31,7 @@ ULONG __cdecl CreateFontPackage(const unsigned char *src, const ULONG src_len, u
     const unsigned short *keep_list, const unsigned short keep_len, CFP_ALLOCPROC allocproc,
     CFP_REALLOCPROC reallocproc, CFP_FREEPROC freeproc, void *reserved)
 {
-    FIXME("(%p %u %p %p %p %#x %u %u %u %u %u %p %u %p %p %p %p): stub\n", src, src_len, dest, dest_len,
+    FIXME("(%p %lu %p %p %p %#x %u %u %u %u %u %p %u %p %p %p %p): stub\n", src, src_len, dest, dest_len,
         written, flags, face_index, format, lang, platform, encoding, keep_list, keep_len, allocproc,
         reallocproc, freeproc, reserved);
 




More information about the wine-cvs mailing list