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
b61cfa88
Commit
b61cfa88
authored
Dec 02, 2020
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rpcrt4/tests: Avoid a printf format warning.
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
31062ee5
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
rpc.c
dlls/rpcrt4/tests/rpc.c
+2
-2
No files found.
dlls/rpcrt4/tests/rpc.c
View file @
b61cfa88
...
...
@@ -896,9 +896,9 @@ static void test_RpcIfInqId(void)
ok
(
status
==
RPC_S_OK
,
"Test %u: Expected %#x, got %#x.
\n
"
,
test_idx
,
RPC_S_OK
,
status
);
ok
(
!
memcmp
(
&
if_id
.
Uuid
,
&
guid
,
sizeof
(
guid
)),
"Test %u: Expected UUID %s, got %s.
\n
"
,
test_idx
,
wine_dbgstr_guid
(
&
guid
),
wine_dbgstr_guid
(
&
if_id
.
Uuid
));
ok
(
if_id
.
VersMajor
==
1
,
"Test %u: Expected major version
%hu, got %hu.
\n
"
,
test_idx
,
1
,
ok
(
if_id
.
VersMajor
==
1
,
"Test %u: Expected major version
1, got %hu.
\n
"
,
test_idx
,
if_id
.
VersMajor
);
ok
(
if_id
.
VersMinor
==
2
,
"Test %u: Expected minor version
%hu, got %hu.
\n
"
,
test_idx
,
2
,
ok
(
if_id
.
VersMinor
==
2
,
"Test %u: Expected minor version
2, got %hu.
\n
"
,
test_idx
,
if_id
.
VersMinor
);
}
}
...
...
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