[PATCH 2/5] gdi32: Trace full contents of DOCINFO in StartDoc.

Dmitry Timoshkov dmitry at baikal.ru
Fri Dec 7 06:16:21 CST 2018


Signed-off-by: Dmitry Timoshkov <dmitry at baikal.ru>
---
 dlls/gdi32/printdrv.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dlls/gdi32/printdrv.c b/dlls/gdi32/printdrv.c
index 3cfdc477e6..d2f4076746 100644
--- a/dlls/gdi32/printdrv.c
+++ b/dlls/gdi32/printdrv.c
@@ -72,9 +72,9 @@ INT WINAPI StartDocW(HDC hdc, const DOCINFOW* doc)
     INT ret;
     DC *dc = get_dc_ptr( hdc );
 
-    TRACE("DocName = %s Output = %s Datatype = %s\n",
+    TRACE("DocName %s, Output %s, Datatype %s, fwType %#x\n",
           debugstr_w(doc->lpszDocName), debugstr_w(doc->lpszOutput),
-          debugstr_w(doc->lpszDatatype));
+          debugstr_w(doc->lpszDatatype), doc->fwType);
 
     if(!dc) return SP_ERROR;
 
-- 
2.19.2




More information about the wine-devel mailing list