Commit 05a4f7e9 authored by Michael Stefaniuc's avatar Michael Stefaniuc Committed by Alexandre Julliard

infosoft: Win64 printf format warning fixes.

parent 5e8c7166
......@@ -5,7 +5,7 @@ VPATH = @srcdir@
MODULE = infosoft.dll
IMPORTS = ole32 advapi32 kernel32 ntdll
EXTRALIBS = -luuid
EXTRADEFS = -DCOM_NO_WINDOWS_H -DWINE_NO_LONG_AS_INT
EXTRADEFS = -DCOM_NO_WINDOWS_H
C_SRCS = \
infosoft_main.c \
......
......@@ -82,7 +82,7 @@ static ULONG WINAPI wb_Release(IWordBreaker *iface)
static HRESULT WINAPI wb_Init( IWordBreaker *iface,
BOOL fQuery, ULONG ulMaxTokenSize, BOOL *pfLicense )
{
TRACE("%d %lu\n", fQuery, ulMaxTokenSize);
TRACE("%d %u\n", fQuery, ulMaxTokenSize);
*pfLicense = FALSE;
return S_OK;
}
......@@ -156,7 +156,7 @@ static HRESULT WINAPI wb_ComposePhrase( IWordBreaker *iface,
const WCHAR *pwcModifier, ULONG cwcModifier,
ULONG ulAttachmentType, WCHAR *pwcPhrase, ULONG *pcwcPhrase)
{
FIXME("%p %lu %p %lu %lu %p %p\n", pwcNoun, cwcNoun,
FIXME("%p %u %p %u %u %p %p\n", pwcNoun, cwcNoun,
pwcModifier, cwcModifier, ulAttachmentType, pwcPhrase, pcwcPhrase);
return S_OK;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment