infosoft: Win64 printf format warning fixes.

This commit is contained in:
Michael Stefaniuc 2006-10-04 11:50:42 +02:00 committed by Alexandre Julliard
parent 5e8c71669a
commit 05a4f7e9e3
2 changed files with 3 additions and 3 deletions

View File

@ -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 \

View File

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