[PATCH 15/27] dlls/fontsub: enable compilation with long types

Eric Pouech eric.pouech at gmail.com
Thu Feb 10 01:42:43 CST 2022


Signed-off-by: Eric Pouech <eric.pouech at gmail.com>

---
 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-devel mailing list