From 9df2f019630da222957d0bd2ee8ad11cf1ed94eb Mon Sep 17 00:00:00 2001 From: Michael Fabian 'Xaymar' Dirks Date: Sat, 20 May 2023 20:28:42 +0200 Subject: [PATCH] templates: Pascal uses <> instead of != --- templates/windows/installer.iss.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/windows/installer.iss.in b/templates/windows/installer.iss.in index 791c702..2723763 100644 --- a/templates/windows/installer.iss.in +++ b/templates/windows/installer.iss.in @@ -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