Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
860d40b1
Commit
860d40b1
authored
Oct 05, 2006
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Oct 06, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
comcat/tests: Win64 printf format warning fixes.
parent
723b884b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
4 deletions
+3
-4
Makefile.in
dlls/comcat/tests/Makefile.in
+0
-1
comcat.c
dlls/comcat/tests/comcat.c
+3
-3
No files found.
dlls/comcat/tests/Makefile.in
View file @
860d40b1
...
...
@@ -5,7 +5,6 @@ VPATH = @srcdir@
TESTDLL
=
comcat.dll
IMPORTS
=
ole32 advapi32 kernel32
EXTRALIBS
=
-luuid
EXTRADEFS
=
-DWINE_NO_LONG_AS_INT
CTESTS
=
\
comcat.c
...
...
dlls/comcat/tests/comcat.c
View file @
860d40b1
...
...
@@ -28,7 +28,7 @@
#include "wine/test.h"
#define ok_ole_success(hr, func) ok(hr == S_OK, func " failed with error 0x%08
l
x \n", hr)
#define ok_ole_success(hr, func) ok(hr == S_OK, func " failed with error 0x%08x \n", hr)
static
void
register_testentry
(
void
)
{
...
...
@@ -103,7 +103,7 @@ static void do_enum(void)
ok_ole_success
(
hr
,
"ICatInformation_EnumClassesOfCategories"
);
hr
=
IEnumGUID_Next
(
pIEnum
,
1
,
the_guid
,
&
fetched
);
ok
(
fetched
==
0
,
"Fetched wrong number of guids %
l
u
\n
"
,
fetched
);
ok
(
fetched
==
0
,
"Fetched wrong number of guids %u
\n
"
,
fetched
);
IEnumGUID_Release
(
pIEnum
);
register_testentry
();
...
...
@@ -112,7 +112,7 @@ static void do_enum(void)
ok_ole_success
(
hr
,
"ICatInformation_EnumClassesOfCategories"
);
hr
=
IEnumGUID_Next
(
pIEnum
,
1
,
the_guid
,
&
fetched
);
ok
(
fetched
==
1
,
"Fetched wrong number of guids %
l
u
\n
"
,
fetched
);
ok
(
fetched
==
1
,
"Fetched wrong number of guids %u
\n
"
,
fetched
);
ok
(
IsEqualGUID
(
the_guid
,
&
wanted_guid
),
"Guids do not match
\n
"
);
IEnumGUID_Release
(
pIEnum
);
...
...
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