Commit 54a2891d authored by Mike McCormack's avatar Mike McCormack Committed by Alexandre Julliard

Make some fixme messages less alarmist.

parent 3344365f
...@@ -818,7 +818,7 @@ static BOOL ACTION_HandleStandardAction(MSIPACKAGE *package, LPCWSTR action, ...@@ -818,7 +818,7 @@ static BOOL ACTION_HandleStandardAction(MSIPACKAGE *package, LPCWSTR action,
} }
else else
{ {
FIXME("UNHANDLED Standard Action %s\n",debugstr_w(action)); FIXME("unhandled standard action %s\n",debugstr_w(action));
*rc = ERROR_SUCCESS; *rc = ERROR_SUCCESS;
} }
} }
...@@ -868,7 +868,7 @@ UINT ACTION_PerformAction(MSIPACKAGE *package, const WCHAR *action, BOOL force) ...@@ -868,7 +868,7 @@ UINT ACTION_PerformAction(MSIPACKAGE *package, const WCHAR *action, BOOL force)
if (!handled) 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; rc = ERROR_FUNCTION_NOT_CALLED;
} }
...@@ -892,7 +892,7 @@ UINT ACTION_PerformUIAction(MSIPACKAGE *package, const WCHAR *action) ...@@ -892,7 +892,7 @@ UINT ACTION_PerformUIAction(MSIPACKAGE *package, const WCHAR *action)
if (!handled) 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; rc = ERROR_FUNCTION_NOT_CALLED;
} }
......
...@@ -444,7 +444,7 @@ UINT WINAPI MsiSourceListAddSourceExW( LPCWSTR szProduct, LPCWSTR szUserSid, ...@@ -444,7 +444,7 @@ UINT WINAPI MsiSourceListAddSourceExW( LPCWSTR szProduct, LPCWSTR szUserSid,
rc = OpenURLSubkey(sourcekey, &typekey, TRUE); rc = OpenURLSubkey(sourcekey, &typekey, TRUE);
else else
{ {
ERR("Unknown media type!\n"); ERR("unknown media type: %08lx\n", dwOptions);
RegCloseKey(sourcekey); RegCloseKey(sourcekey);
return ERROR_FUNCTION_FAILED; return ERROR_FUNCTION_FAILED;
} }
...@@ -455,7 +455,7 @@ UINT WINAPI MsiSourceListAddSourceExW( LPCWSTR szProduct, LPCWSTR szUserSid, ...@@ -455,7 +455,7 @@ UINT WINAPI MsiSourceListAddSourceExW( LPCWSTR szProduct, LPCWSTR szUserSid,
DWORD current_index = atoiW(source_struct.szIndex); DWORD current_index = atoiW(source_struct.szIndex);
/* found the source */ /* found the source */
if (dwIndex > 0 && current_index != dwIndex) if (dwIndex > 0 && current_index != dwIndex)
FIXME("Need to reorder the souces! UNHANDLED\n"); FIXME("Need to reorder the sources!\n");
} }
else else
{ {
...@@ -467,7 +467,7 @@ UINT WINAPI MsiSourceListAddSourceExW( LPCWSTR szProduct, LPCWSTR szUserSid, ...@@ -467,7 +467,7 @@ UINT WINAPI MsiSourceListAddSourceExW( LPCWSTR szProduct, LPCWSTR szUserSid,
current_index = atoiW(source_struct.szIndex); current_index = atoiW(source_struct.szIndex);
/* new source */ /* new source */
if (dwIndex > 0 && dwIndex < current_index) if (dwIndex > 0 && dwIndex < current_index)
FIXME("Need to reorder the souces! UNHANDLED\n"); FIXME("Need to reorder the sources!\n");
current_index ++; current_index ++;
sprintfW(source_struct.szIndex,fmt,current_index); sprintfW(source_struct.szIndex,fmt,current_index);
......
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