From cf3362afb1894d3d5bae700d201cc7329a478234 Mon Sep 17 00:00:00 2001 From: Alistair Leslie-Hughes Date: Thu, 24 May 2018 04:06:28 +0000 Subject: [PATCH] gdiplus: Display the GUID of the image type in GdipSaveImageToStream. Based on a patch by Dmitry Timoshkov. Signed-off-by: Alistair Leslie-Hughes Signed-off-by: Vincent Povirk Signed-off-by: Alexandre Julliard --- dlls/gdiplus/image.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/gdiplus/image.c b/dlls/gdiplus/image.c index 5affe03428f..e9b0b087af9 100644 --- a/dlls/gdiplus/image.c +++ b/dlls/gdiplus/image.c @@ -4580,7 +4580,7 @@ GpStatus WINGDIPAPI GdipSaveImageToStream(GpImage *image, IStream* stream, encode_image_func encode_image; int i; - TRACE("%p %p %p %p\n", image, stream, clsid, params); + TRACE("%p, %p, %s, %p\n", image, stream, wine_dbgstr_guid(clsid), params); if(!image || !stream) return InvalidParameter;