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
c50f6a30
Commit
c50f6a30
authored
Jun 30, 2015
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Jun 30, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kernel32/tests: The result of a comparison is already a BOOL.
parent
699efa6f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
volume.c
dlls/kernel32/tests/volume.c
+2
-2
No files found.
dlls/kernel32/tests/volume.c
View file @
c50f6a30
...
...
@@ -793,9 +793,9 @@ static void test_GetVolumePathNameA(void)
for
(
i
=
0
;
i
<
sizeof
(
test_paths
)
/
sizeof
(
test_paths
[
0
]);
i
++
)
{
BOOL
broken_ret
=
test_paths
[
i
].
broken_error
==
NO_ERROR
?
TRUE
:
FALSE
;
BOOL
broken_ret
=
test_paths
[
i
].
broken_error
==
NO_ERROR
;
char
*
output
=
(
test_paths
[
i
].
path_name
!=
NULL
?
volume_path
:
NULL
);
BOOL
expected_ret
=
test_paths
[
i
].
error
==
NO_ERROR
?
TRUE
:
FALSE
;
BOOL
expected_ret
=
test_paths
[
i
].
error
==
NO_ERROR
;
volume_path
[
0
]
=
0
;
if
(
test_paths
[
i
].
path_len
<
sizeof
(
volume_path
))
...
...
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