Skip to content

Commit

Permalink
templates: Pascal uses <> instead of !=
Browse files Browse the repository at this point in the history
  • Loading branch information
Xaymar committed May 20, 2023
1 parent ffb7a6c commit 9df2f01
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion templates/windows/installer.iss.in
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ var
begin
// Attempt to remove old version if it exists.
if (IsUpgrade()) then begin
if (UninstallOldVersion() != 0) then begin
if (UninstallOldVersion() <> 0) then begin
Result := "Removal of older @PROJECT_NAME@ version was cancelled. Unable to continue with normal installation process, Setup will now abort."
exit;
end
Expand Down

0 comments on commit 9df2f01

Please sign in to comment.