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
829170f3
Commit
829170f3
authored
Mar 26, 2019
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Mar 26, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
oleaut32/tests: Remove useless casts to self.
Signed-off-by:
Michael Stefaniuc
<
mstefani@winehq.org
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
9583bd00
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
typelib.c
dlls/oleaut32/tests/typelib.c
+2
-2
No files found.
dlls/oleaut32/tests/typelib.c
View file @
829170f3
...
...
@@ -1138,9 +1138,9 @@ static int WINAPI int_func( int a0, int a1, int a2, int a3, int a4 )
static
double
WINAPI
double_func
(
double
a0
,
float
a1
,
double
a2
,
int
a3
)
{
ok
(
a0
==
1
.
2
,
"wrong arg0 %f
\n
"
,
(
double
)
a0
);
ok
(
a0
==
1
.
2
,
"wrong arg0 %f
\n
"
,
a0
);
ok
(
a1
==
3
.
25
,
"wrong arg1 %f
\n
"
,
(
double
)
a1
);
ok
(
a2
==
1.2e12
,
"wrong arg2 %f
\n
"
,
(
double
)
a2
);
ok
(
a2
==
1.2e12
,
"wrong arg2 %f
\n
"
,
a2
);
ok
(
a3
==
-
4433
.
0
,
"wrong arg3 %f
\n
"
,
(
double
)
a3
);
return
4321
;
}
...
...
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