comcat: Win64 printf format warning fixes.
This commit is contained in:
parent
e71c802c3f
commit
276d0900a8
@ -5,7 +5,6 @@ VPATH = @srcdir@
|
|||||||
MODULE = comcat.dll
|
MODULE = comcat.dll
|
||||||
IMPORTS = ole32 user32 advapi32 kernel32
|
IMPORTS = ole32 user32 advapi32 kernel32
|
||||||
EXTRALIBS = -luuid
|
EXTRALIBS = -luuid
|
||||||
EXTRADEFS = -DWINE_NO_LONG_AS_INT
|
|
||||||
|
|
||||||
C_SRCS = \
|
C_SRCS = \
|
||||||
comcat_main.c \
|
comcat_main.c \
|
||||||
|
@ -120,7 +120,7 @@ static HRESULT WINAPI COMCAT_ICatInformation_GetCategoryDesc(
|
|||||||
HKEY key;
|
HKEY key;
|
||||||
HRESULT res;
|
HRESULT res;
|
||||||
|
|
||||||
TRACE("\n\tCATID:\t%s\n\tLCID:\t%lX\n",debugstr_guid(rcatid), lcid);
|
TRACE("\n\tCATID:\t%s\n\tLCID:\t%X\n",debugstr_guid(rcatid), lcid);
|
||||||
|
|
||||||
if (rcatid == NULL || ppszDesc == NULL) return E_INVALIDARG;
|
if (rcatid == NULL || ppszDesc == NULL) return E_INVALIDARG;
|
||||||
|
|
||||||
@ -203,10 +203,10 @@ static HRESULT WINAPI COMCAT_ICatInformation_IsClassOfCategories(
|
|||||||
|
|
||||||
if (WINE_TRACE_ON(ole)) {
|
if (WINE_TRACE_ON(ole)) {
|
||||||
ULONG count;
|
ULONG count;
|
||||||
TRACE("\n\tCLSID:\t%s\n\tImplemented %lu\n",debugstr_guid(rclsid),cImplemented);
|
TRACE("\n\tCLSID:\t%s\n\tImplemented %u\n",debugstr_guid(rclsid),cImplemented);
|
||||||
for (count = 0; count < cImplemented; ++count)
|
for (count = 0; count < cImplemented; ++count)
|
||||||
TRACE("\t\t%s\n",debugstr_guid(&rgcatidImpl[count]));
|
TRACE("\t\t%s\n",debugstr_guid(&rgcatidImpl[count]));
|
||||||
TRACE("\tRequired %lu\n",cRequired);
|
TRACE("\tRequired %u\n",cRequired);
|
||||||
for (count = 0; count < cRequired; ++count)
|
for (count = 0; count < cRequired; ++count)
|
||||||
TRACE("\t\t%s\n",debugstr_guid(&rgcatidReq[count]));
|
TRACE("\t\t%s\n",debugstr_guid(&rgcatidReq[count]));
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user