summaryrefslogtreecommitdiff
path: root/desktop/win32
diff options
context:
space:
mode:
authorAndras Timar <atimar@novell.com>2011-04-30 15:31:56 +0200
committerAndras Timar <atimar@novell.com>2011-04-30 15:31:56 +0200
commit545be5862a5587824e696b5e2e60730a4941d834 (patch)
treef5cf361f91561d82dc1451308ca2f50e29d97274 /desktop/win32
parent4f396844fcf6ee9cb4ae4271b2beb94f8b179b93 (diff)
typo fix + add a line to log file
Diffstat (limited to 'desktop/win32')
-rw-r--r--desktop/win32/source/setup/setup.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/desktop/win32/source/setup/setup.cpp b/desktop/win32/source/setup/setup.cpp
index cda9a2c5aacf..e4c788515d85 100644
--- a/desktop/win32/source/setup/setup.cpp
+++ b/desktop/win32/source/setup/setup.cpp
@@ -835,10 +835,10 @@ boolean SetupAppX::LaunchInstaller( LPCTSTR pParam )
PROCESS_INFORMATION aPI;
Log( TEXT( " Will install using <%s>\r\n" ), sMsiPath );
- Log( TEXT( " Prameters are: %s\r\n" ), pParam );
+ Log( TEXT( " Parameters are: %s\r\n" ), pParam );
OutputDebugStringFormat( TEXT( " Will install using <%s>\r\n" ), sMsiPath );
- OutputDebugStringFormat( TEXT( " Prameters are: %s\r\n" ), pParam );
+ OutputDebugStringFormat( TEXT( " Parameters are: %s\r\n" ), pParam );
ZeroMemory( (void*)&aPI, sizeof( PROCESS_INFORMATION ) );
ZeroMemory( (void*)&aSUI, sizeof( STARTUPINFO ) );
@@ -1898,6 +1898,7 @@ boolean SetupAppX::IsPatchInstalled( TCHAR* pBaseDir, TCHAR* pFileName )
boolean SetupAppX::InstallRuntimes( TCHAR *sProductCode, TCHAR *sRuntimePath )
{
INSTALLSTATE nRet = MsiQueryProductState( sProductCode );
+ Log( TEXT( "MsiQueryProductState returned <%d>\r\n" ), nRet );
OutputDebugStringFormat( TEXT( "MsiQueryProductState returned <%d>\r\n" ), nRet );
if ( nRet == INSTALLSTATE_DEFAULT )
return true;