From 54a2891d33aaa62b09f530312b2ce74aadf7b0d2 Mon Sep 17 00:00:00 2001 From: Mike McCormack Date: Tue, 6 Sep 2005 09:23:18 +0000 Subject: [PATCH] Make some fixme messages less alarmist. --- dlls/msi/action.c | 6 +++--- dlls/msi/source.c | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/dlls/msi/action.c b/dlls/msi/action.c index d214aca16a1..daf572fbbbe 100644 --- a/dlls/msi/action.c +++ b/dlls/msi/action.c @@ -818,7 +818,7 @@ static BOOL ACTION_HandleStandardAction(MSIPACKAGE *package, LPCWSTR action, } else { - FIXME("UNHANDLED Standard Action %s\n",debugstr_w(action)); + FIXME("unhandled standard action %s\n",debugstr_w(action)); *rc = ERROR_SUCCESS; } } @@ -868,7 +868,7 @@ UINT ACTION_PerformAction(MSIPACKAGE *package, const WCHAR *action, BOOL force) if (!handled) { - FIXME("UNHANDLED MSI ACTION %s\n",debugstr_w(action)); + FIXME("unhandled msi action %s\n",debugstr_w(action)); rc = ERROR_FUNCTION_NOT_CALLED; } @@ -892,7 +892,7 @@ UINT ACTION_PerformUIAction(MSIPACKAGE *package, const WCHAR *action) if (!handled) { - FIXME("UNHANDLED MSI ACTION %s\n",debugstr_w(action)); + FIXME("unhandled msi action %s\n",debugstr_w(action)); rc = ERROR_FUNCTION_NOT_CALLED; } diff --git a/dlls/msi/source.c b/dlls/msi/source.c index 136d492fa48..63e4aeb8682 100644 --- a/dlls/msi/source.c +++ b/dlls/msi/source.c @@ -444,7 +444,7 @@ UINT WINAPI MsiSourceListAddSourceExW( LPCWSTR szProduct, LPCWSTR szUserSid, rc = OpenURLSubkey(sourcekey, &typekey, TRUE); else { - ERR("Unknown media type!\n"); + ERR("unknown media type: %08lx\n", dwOptions); RegCloseKey(sourcekey); return ERROR_FUNCTION_FAILED; } @@ -455,7 +455,7 @@ UINT WINAPI MsiSourceListAddSourceExW( LPCWSTR szProduct, LPCWSTR szUserSid, DWORD current_index = atoiW(source_struct.szIndex); /* found the source */ if (dwIndex > 0 && current_index != dwIndex) - FIXME("Need to reorder the souces! UNHANDLED\n"); + FIXME("Need to reorder the sources!\n"); } else { @@ -467,7 +467,7 @@ UINT WINAPI MsiSourceListAddSourceExW( LPCWSTR szProduct, LPCWSTR szUserSid, current_index = atoiW(source_struct.szIndex); /* new source */ if (dwIndex > 0 && dwIndex < current_index) - FIXME("Need to reorder the souces! UNHANDLED\n"); + FIXME("Need to reorder the sources!\n"); current_index ++; sprintfW(source_struct.szIndex,fmt,current_index); -- 2.11.4.GIT