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
8293cf33
Commit
8293cf33
authored
Mar 06, 2015
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Mar 06, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gdi32: Remove double parentheses, not a misplaced pair (PVS-Studio).
parent
63c7fd2a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
objects.c
dlls/gdi32/dibdrv/objects.c
+2
-2
No files found.
dlls/gdi32/dibdrv/objects.c
View file @
8293cf33
...
...
@@ -1307,8 +1307,8 @@ static HRGN create_miter_region( dibdrv_physdev *pdev, const POINT *pt,
pt_1
=
face_1
->
start
;
pt_2
=
face_2
->
end
;
a
=
(
double
)(
(
pt_2
.
x
*
face_2
->
dy
-
pt_2
.
y
*
face_2
->
dx
)
)
/
det
;
b
=
(
double
)(
(
pt_1
.
x
*
face_1
->
dy
-
pt_1
.
y
*
face_1
->
dx
)
)
/
det
;
a
=
(
double
)(
pt_2
.
x
*
face_2
->
dy
-
pt_2
.
y
*
face_2
->
dx
)
/
det
;
b
=
(
double
)(
pt_1
.
x
*
face_1
->
dy
-
pt_1
.
y
*
face_1
->
dx
)
/
det
;
x
=
a
*
face_1
->
dx
-
b
*
face_2
->
dx
;
y
=
a
*
face_1
->
dy
-
b
*
face_2
->
dy
;
...
...
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