mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-05 18:01:34 +00:00
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:
parent
1d6a410244
commit
23be5e516b
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue