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
dcab600e
Commit
dcab600e
authored
Apr 04, 2024
by
Rémi Bernon
Committed by
Alexandre Julliard
Apr 09, 2024
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mf/tests: Fix printf format warning.
parent
c43655d8
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
mf.c
dlls/mf/tests/mf.c
+2
-2
No files found.
dlls/mf/tests/mf.c
View file @
dcab600e
...
...
@@ -4179,7 +4179,7 @@ static void test_topology_loader(void)
{
IMFTopology_GetTopologyID
(
topology
,
&
oldtopoid
);
IMFTopology_GetTopologyID
(
full_topology
,
&
newtopoid
);
ok
(
oldtopoid
==
newtopoid
,
"Expected the same topology id. %
llu == %ll
u
\n
"
,
oldtopoid
,
newtopoid
);
ok
(
oldtopoid
==
newtopoid
,
"Expected the same topology id. %
I64u == %I64
u
\n
"
,
oldtopoid
,
newtopoid
);
ok
(
topology
!=
full_topology
,
"Expected a different object for the resolved topology.
\n
"
);
hr
=
IMFTopology_GetCount
(
full_topology
,
&
count
);
...
...
@@ -4331,7 +4331,7 @@ todo_wine {
ok
(
full_topology
!=
topology2
,
"Unexpected instance.
\n
"
);
IMFTopology_GetTopologyID
(
topology2
,
&
oldtopoid
);
IMFTopology_GetTopologyID
(
full_topology
,
&
newtopoid
);
ok
(
oldtopoid
==
newtopoid
,
"Expected the same topology id. %
llu == %ll
u
\n
"
,
oldtopoid
,
newtopoid
);
ok
(
oldtopoid
==
newtopoid
,
"Expected the same topology id. %
I64u == %I64
u
\n
"
,
oldtopoid
,
newtopoid
);
hr
=
IMFTopology_GetUINT32
(
topology2
,
&
IID_IMFTopology
,
&
value
);
ok
(
hr
==
S_OK
,
"Unexpected hr %#lx.
\n
"
,
hr
);
...
...
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