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
16111fa6
Commit
16111fa6
authored
Jan 28, 2014
by
André Hentschel
Committed by
Alexandre Julliard
Jan 30, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
oleaut32/tests: Use boolean return values in boolean functions.
parent
a35b41ac
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
4 deletions
+3
-4
tmarshal.c
dlls/oleaut32/tests/tmarshal.c
+2
-3
vartest.c
dlls/oleaut32/tests/vartest.c
+1
-1
No files found.
dlls/oleaut32/tests/tmarshal.c
View file @
16111fa6
...
...
@@ -721,9 +721,8 @@ static BOOL mystruct_uint_ordered(MYSTRUCT *mystruct)
int
i
;
for
(
i
=
0
;
i
<
sizeof
(
mystruct
->
uarr
)
/
sizeof
(
mystruct
->
uarr
[
0
]);
i
++
)
if
(
mystruct
->
uarr
[
i
]
!=
i
)
return
0
;
return
1
;
return
FALSE
;
return
TRUE
;
}
static
HRESULT
WINAPI
Widget_StructArgs
(
...
...
dlls/oleaut32/tests/vartest.c
View file @
16111fa6
...
...
@@ -290,7 +290,7 @@ static BOOL is_expected_variant( const VARIANT *result, const VARIANT *expected
return
!
memcmp
(
&
V_DECIMAL
(
result
),
&
V_DECIMAL
(
expected
),
sizeof
(
DECIMAL
)
);
default:
ok
(
0
,
"unhandled variant type %s
\n
"
,
vtstr
(
V_VT
(
expected
)));
return
0
;
return
FALSE
;
}
}
...
...
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