From 812eb3c41d5eae82835c5ea507bb1041edf5ba7b Mon Sep 17 00:00:00 2001 From: Michael Stefaniuc Date: Mon, 28 Sep 2020 21:28:05 +0200 Subject: [PATCH] gdiplus: Remove superfluous cast to self. Signed-off-by: Michael Stefaniuc Signed-off-by: Alexandre Julliard --- dlls/gdiplus/metafile.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/gdiplus/metafile.c b/dlls/gdiplus/metafile.c index e52932da11a..e9855c72261 100644 --- a/dlls/gdiplus/metafile.c +++ b/dlls/gdiplus/metafile.c @@ -3482,7 +3482,7 @@ GpStatus WINGDIPAPI GdipPlayMetafileRecord(GDIPCONST GpMetafile *metafile, if (flags & 0x8000) { - stat = GdipCreateSolidFill(draw->brush.Color, (GpSolidFill**)&solidfill); + stat = GdipCreateSolidFill(draw->brush.Color, &solidfill); if (stat != Ok) return InvalidParameter;