wineps.drv: Avoid using the comma operator.

Signed-off-by: Michael Stefaniuc <mstefani@winehq.org>
Signed-off-by: Huw Davies <huw@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Michael Stefaniuc 2019-04-05 21:03:56 +02:00 committed by Alexandre Julliard
parent 1d6a410244
commit 23be5e516b
1 changed files with 1 additions and 1 deletions

View File

@ -271,7 +271,7 @@ DWORD PSDRV_PutImage( PHYSDEV dev, HRGN clip, BITMAPINFO *info,
}
dst_x = dst->visrect.left;
dst_y = dst->visrect.top,
dst_y = dst->visrect.top;
dst_width = dst->visrect.right - dst->visrect.left;
dst_height = dst->visrect.bottom - dst->visrect.top;
if (src->width * dst->width < 0)