From 12c33ab8aa0d314c21afbfc850f94201faa58cf9 Mon Sep 17 00:00:00 2001 From: James Hawkins Date: Sun, 6 May 2007 20:31:42 -0500 Subject: [PATCH] msi: Remove incorrect ERR as messages can be sent before the control is created. --- dlls/msi/dialog.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/dlls/msi/dialog.c b/dlls/msi/dialog.c index 3a256d83075..614b4aa4d58 100644 --- a/dlls/msi/dialog.c +++ b/dlls/msi/dialog.c @@ -3185,8 +3185,7 @@ static LRESULT msi_dialog_oncommand( msi_dialog *dialog, WPARAM param, HWND hwnd msi_dialog_evaluate_control_conditions( dialog ); } } - else - ERR("button click from nowhere %p %d %p\n", dialog, param, hwnd); + return 0; }