From e181c196fdf6de61294f92f2bdfdc1d9a663b468 Mon Sep 17 00:00:00 2001 From: Eric Pouech Date: Thu, 10 Feb 2022 08:42:43 +0100 Subject: [PATCH] fontsub: Enable compilation with long types. Signed-off-by: Eric Pouech Signed-off-by: Alexandre Julliard --- 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);