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

This commit is contained in:
James Hawkins 2006-10-03 14:59:01 -07:00 committed by Alexandre Julliard
parent 9461c0c634
commit 1bfc50eb74
1 changed files with 1 additions and 1 deletions

View File

@ -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 );