gdi32: Remove double parentheses, not a misplaced pair (PVS-Studio).

This commit is contained in:
Michael Stefaniuc 2015-03-06 09:58:11 +01:00 committed by Alexandre Julliard
parent 63c7fd2a63
commit 8293cf33e0
1 changed files with 2 additions and 2 deletions

View File

@ -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;