msi: Include run mode in fixmes.

This commit is contained in:
Hans Leidekker 2010-02-19 12:23:56 +01:00 committed by Alexandre Julliard
parent adf9dcd6a7
commit f4bcb105d2
1 changed files with 2 additions and 2 deletions

View File

@ -717,7 +717,7 @@ BOOL WINAPI MsiGetMode(MSIHANDLE hInstall, MSIRUNMODE iRunMode)
break;
default:
FIXME("unimplemented run mode\n");
FIXME("unimplemented run mode: %d\n", iRunMode);
r = TRUE;
}
@ -766,7 +766,7 @@ UINT WINAPI MsiSetMode(MSIHANDLE hInstall, MSIRUNMODE iRunMode, BOOL fState)
break;
case MSIRUNMODE_REBOOTNOW:
FIXME("unimplemented run mode\n");
FIXME("unimplemented run mode: %d\n", iRunMode);
r = ERROR_FUNCTION_FAILED;
break;