gdiplus: Avoid using the comma operator.

Signed-off-by: Michael Stefaniuc <mstefani@winehq.org>
Signed-off-by: Vincent Povirk <vincent@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
stable
Michael Stefaniuc 2019-03-22 08:47:34 +01:00 committed by Alexandre Julliard
parent 773e1788ce
commit 5d2aa1eebd
1 changed files with 1 additions and 1 deletions

View File

@ -67,7 +67,7 @@ GpStatus WINGDIPAPI GdipCloneBrush(GpBrush *brush, GpBrush **clone)
*clone = heap_alloc_zero(sizeof(GpPathGradient));
if (!*clone) return OutOfMemory;
src = (GpPathGradient*) brush,
src = (GpPathGradient*) brush;
dest = (GpPathGradient*) *clone;
memcpy(dest, src, sizeof(GpPathGradient));