[MSI] Fix minor indentation and spaces before brackets.

This commit is contained in:
Julen Urizar Compains 2024-05-14 23:03:34 +02:00
parent f172355dc5
commit a48bd7c28b

View file

@ -867,11 +867,11 @@ static UINT HANDLE_CustomType1( MSIPACKAGE *package, const WCHAR *source, const
if (!(binary = get_temp_binary(package, source)))
return ERROR_FUNCTION_FAILED;
#if defined(__REACTOS__) && defined(_M_AMD64)
#if defined(__REACTOS__) && defined(_M_AMD64)
{
DWORD arch;
get_binary_type(binary->tmpfile, &arch);
if (arch == SCS_32BIT_BINARY){
if (arch == SCS_32BIT_BINARY) {
WARN("%s is a 32 bit custom action. Returning as ERROR_SUCCESS\n", debugstr_w( source ));
return ERROR_SUCCESS; // NO WOW64! return as executed though it's not true
}