From cfa4c9c11538b332234709dedc7ca553a10ab08e Mon Sep 17 00:00:00 2001 From: Andras Timar Date: Thu, 12 Apr 2012 08:55:45 +0200 Subject: [PATCH] typo fix in comment --- .../win32/customactions/shellextensions/checkrunningoffice.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup_native/source/win32/customactions/shellextensions/checkrunningoffice.cxx b/setup_native/source/win32/customactions/shellextensions/checkrunningoffice.cxx index fce807f856ae..c1319e25e98c 100644 --- a/setup_native/source/win32/customactions/shellextensions/checkrunningoffice.cxx +++ b/setup_native/source/win32/customactions/shellextensions/checkrunningoffice.cxx @@ -101,7 +101,7 @@ extern "C" UINT __stdcall IsOfficeRunning( MSIHANDLE handle ) if ( sOfficeInstallPath.length() == 0 ) return ERROR_SUCCESS; - DWORD aProcesses[1024], cbNeeded, cProcesses; /* 1024 processses ought to be enough for anybody */ + DWORD aProcesses[1024], cbNeeded, cProcesses; /* 1024 processes ought to be enough for anybody */ if ( !EnumProcesses( aProcesses, sizeof(aProcesses), &cbNeeded ) ) return ERROR_INSTALL_FAILURE;