Skip to content

Commit

Permalink
gdi32: Trace full contents of DOCINFO in StartDoc.
Browse files Browse the repository at this point in the history
Signed-off-by: Dmitry Timoshkov <[email protected]>
Signed-off-by: Huw Davies <[email protected]>
Signed-off-by: Alexandre Julliard <[email protected]>
  • Loading branch information
Dmitry Timoshkov authored and julliard committed Dec 10, 2018
1 parent 9ad2d03 commit 7933f7b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dlls/gdi32/printdrv.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down

0 comments on commit 7933f7b

Please sign in to comment.