James Hawkins : msi: Downgrade a few messages to WARN.

Alexandre Julliard julliard at winehq.org
Thu Apr 3 05:43:50 CDT 2008


Module: wine
Branch: master
Commit: c48daf93bb41ab8557ee822341114d1676075c69
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=c48daf93bb41ab8557ee822341114d1676075c69

Author: James Hawkins <jhawkins at codeweavers.com>
Date:   Wed Apr  2 18:30:37 2008 -0500

msi: Downgrade a few messages to WARN.

---

 dlls/msi/action.c |    4 ++--
 dlls/msi/dialog.c |    2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/dlls/msi/action.c b/dlls/msi/action.c
index b19e015..ef0e136 100644
--- a/dlls/msi/action.c
+++ b/dlls/msi/action.c
@@ -1053,7 +1053,7 @@ UINT ACTION_PerformAction(MSIPACKAGE *package, const WCHAR *action, UINT script,
 
     if (!handled)
     {
-        FIXME("unhandled msi action %s\n",debugstr_w(action));
+        WARN("unhandled msi action %s\n",debugstr_w(action));
         rc = ERROR_FUNCTION_NOT_CALLED;
     }
 
@@ -1077,7 +1077,7 @@ UINT ACTION_PerformUIAction(MSIPACKAGE *package, const WCHAR *action, UINT scrip
 
     if (!handled)
     {
-        FIXME("unhandled msi action %s\n",debugstr_w(action));
+        WARN("unhandled msi action %s\n",debugstr_w(action));
         rc = ERROR_FUNCTION_NOT_CALLED;
     }
 
diff --git a/dlls/msi/dialog.c b/dlls/msi/dialog.c
index e084bf8..035d7f5 100644
--- a/dlls/msi/dialog.c
+++ b/dlls/msi/dialog.c
@@ -2917,7 +2917,7 @@ static MSIRECORD *msi_get_dialog_record( msi_dialog *dialog )
 
     rec = MSI_QueryGetRecord( package->db, query, dialog->name );
     if( !rec )
-        ERR("query failed for dialog %s\n", debugstr_w(dialog->name));
+        WARN("query failed for dialog %s\n", debugstr_w(dialog->name));
 
     return rec;
 }




More information about the wine-cvs mailing list