Commit 1bfc50eb authored by James Hawkins's avatar James Hawkins Committed by Alexandre Julliard

msi: Add missing '\n' to TRACE output.

parent 9461c0c6
......@@ -2964,7 +2964,7 @@ static LRESULT msi_dialog_onnotify( msi_dialog *dialog, LPARAM param )
LPNMHDR nmhdr = (LPNMHDR) param;
msi_control *control = msi_dialog_find_control_by_hwnd( dialog, nmhdr->hwndFrom );
TRACE("%p %p", dialog, nmhdr->hwndFrom);
TRACE("%p %p\n", dialog, nmhdr->hwndFrom);
if ( control && control->handler )
control->handler( dialog, control, param );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment