Skip to content

Commit

Permalink
[MSI] Fixing a warning and the whitespaces
Browse files Browse the repository at this point in the history
  • Loading branch information
julenuri committed May 21, 2024
1 parent 9349b24 commit becc95d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dll/win32/msi/custom.c
Original file line number Diff line number Diff line change
Expand Up @@ -872,7 +872,7 @@ static UINT HANDLE_CustomType1( MSIPACKAGE *package, const WCHAR *source, const
DWORD arch;
get_binary_type(binary->tmpfile, &arch);
if (arch == SCS_32BIT_BINARY) {
ERR("%s is a 32 bit custom action. Returning as ERROR_SUCCESS\n", debugstr_w( source ));
ERR("%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
}
}
Expand Down Expand Up @@ -991,7 +991,7 @@ static UINT HANDLE_CustomType17( MSIPACKAGE *package, const WCHAR *source, const
DWORD arch;
get_binary_type(file->TargetPath, &arch);
if (arch == SCS_32BIT_BINARY) {
WARN("%s is a 32 bit custom action. Returning as ERROR_SUCCESS\n", debugstr_w( source ));
ERR("%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
}
}
Expand Down

0 comments on commit becc95d

Please sign in to comment.