Dmitry Timoshkov : gdi32: Trace full contents of DOCINFO in StartDoc.

Alexandre Julliard julliard at winehq.org
Mon Dec 10 15:46:03 CST 2018


Module: wine
Branch: master
Commit: 7933f7beefed39fb6fb15358ee64f804938e0fc2
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=7933f7beefed39fb6fb15358ee64f804938e0fc2

Author: Dmitry Timoshkov <dmitry at baikal.ru>
Date:   Fri Dec  7 15:16:21 2018 +0300

gdi32: Trace full contents of DOCINFO in StartDoc.

Signed-off-by: Dmitry Timoshkov <dmitry at baikal.ru>
Signed-off-by: Huw Davies <huw at codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 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 3cfdc47..d2f4076 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;
 




More information about the wine-cvs mailing list