Module: wine Branch: master Commit: 148d0e4576265d1527416d40607876d29e855745 URL: http://source.winehq.org/git/wine.git/?a=commit;h=148d0e4576265d1527416d4060... Author: Michael Stefaniuc <mstefani(a)redhat.de> Date: Wed Apr 20 10:37:32 2016 +0200 msi: Use wine_dbgstr_rect() to trace a RECT. Signed-off-by: Michael Stefaniuc <mstefani(a)redhat.de> Signed-off-by: Hans Leidekker <hans(a)codeweavers.com> Signed-off-by: Alexandre Julliard <julliard(a)winehq.org> --- dlls/msi/dialog.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/msi/dialog.c b/dlls/msi/dialog.c index b0f0e5d..fc9c24c 100644 --- a/dlls/msi/dialog.c +++ b/dlls/msi/dialog.c @@ -3609,7 +3609,7 @@ static void msi_dialog_adjust_dialog_pos( msi_dialog *dialog, MSIRECORD *rec, LP dialog->size.cx = sz.cx; dialog->size.cy = sz.cy; - TRACE("%u %u %u %u\n", pos->left, pos->top, pos->right, pos->bottom); + TRACE("%s\n", wine_dbgstr_rect(pos)); style = GetWindowLongPtrW( dialog->hwnd, GWL_STYLE ); AdjustWindowRect( pos, style, FALSE );