Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
276d0900
Commit
276d0900
authored
Oct 04, 2006
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Oct 04, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
comcat: Win64 printf format warning fixes.
parent
e71c802c
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
4 deletions
+3
-4
Makefile.in
dlls/comcat/Makefile.in
+0
-1
information.c
dlls/comcat/information.c
+3
-3
No files found.
dlls/comcat/Makefile.in
View file @
276d0900
...
...
@@ -5,7 +5,6 @@ VPATH = @srcdir@
MODULE
=
comcat.dll
IMPORTS
=
ole32 user32 advapi32 kernel32
EXTRALIBS
=
-luuid
EXTRADEFS
=
-DWINE_NO_LONG_AS_INT
C_SRCS
=
\
comcat_main.c
\
...
...
dlls/comcat/information.c
View file @
276d0900
...
...
@@ -120,7 +120,7 @@ static HRESULT WINAPI COMCAT_ICatInformation_GetCategoryDesc(
HKEY
key
;
HRESULT
res
;
TRACE
(
"
\n\t
CATID:
\t
%s
\n\t
LCID:
\t
%
l
X
\n
"
,
debugstr_guid
(
rcatid
),
lcid
);
TRACE
(
"
\n\t
CATID:
\t
%s
\n\t
LCID:
\t
%X
\n
"
,
debugstr_guid
(
rcatid
),
lcid
);
if
(
rcatid
==
NULL
||
ppszDesc
==
NULL
)
return
E_INVALIDARG
;
...
...
@@ -203,10 +203,10 @@ static HRESULT WINAPI COMCAT_ICatInformation_IsClassOfCategories(
if
(
WINE_TRACE_ON
(
ole
))
{
ULONG
count
;
TRACE
(
"
\n\t
CLSID:
\t
%s
\n\t
Implemented %
l
u
\n
"
,
debugstr_guid
(
rclsid
),
cImplemented
);
TRACE
(
"
\n\t
CLSID:
\t
%s
\n\t
Implemented %u
\n
"
,
debugstr_guid
(
rclsid
),
cImplemented
);
for
(
count
=
0
;
count
<
cImplemented
;
++
count
)
TRACE
(
"
\t\t
%s
\n
"
,
debugstr_guid
(
&
rgcatidImpl
[
count
]));
TRACE
(
"
\t
Required %
l
u
\n
"
,
cRequired
);
TRACE
(
"
\t
Required %u
\n
"
,
cRequired
);
for
(
count
=
0
;
count
<
cRequired
;
++
count
)
TRACE
(
"
\t\t
%s
\n
"
,
debugstr_guid
(
&
rgcatidReq
[
count
]));
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment