wineps.drv: Use wine_dbgstr_rect() to print a RECT.

Michael Stefaniuc mstefani at redhat.de
Wed Jul 6 01:59:27 CDT 2016


Signed-off-by: Michael Stefaniuc <mstefani at redhat.de>
---
 dlls/wineps.drv/escape.c | 10 ++--------
 1 file changed, 2 insertions(+), 8 deletions(-)

diff --git a/dlls/wineps.drv/escape.c b/dlls/wineps.drv/escape.c
index 00a4a6c..435376c 100644
--- a/dlls/wineps.drv/escape.c
+++ b/dlls/wineps.drv/escape.c
@@ -129,14 +129,8 @@ INT PSDRV_ExtEscape( PHYSDEV dev, INT nEscape, INT cbInput, LPCVOID in_data,
 	BANDINFOSTRUCT	*ibi = (BANDINFOSTRUCT*)in_data;
 	BANDINFOSTRUCT	*obi = (BANDINFOSTRUCT*)out_data;
 
-	FIXME("BANDINFO(graphics %d, text %d, rect [%dx%d-%dx%d]), stub!\n",
-		ibi->GraphicsFlag,
-		ibi->TextFlag,
-		ibi->GraphicsRect.top,
-		ibi->GraphicsRect.bottom,
-		ibi->GraphicsRect.left,
-		ibi->GraphicsRect.right
-	);
+        FIXME("BANDINFO(graphics %d, text %d, rect %s), stub!\n", ibi->GraphicsFlag,
+                ibi->TextFlag, wine_dbgstr_rect(&ibi->GraphicsRect));
 	*obi = *ibi;
 	return 1;
     }
-- 
2.4.11



More information about the wine-patches mailing list