Skip to content

Commit

Permalink
Small typo in compiler difference detection.
Browse files Browse the repository at this point in the history
  • Loading branch information
LongDirtyAnimAlf committed Jul 5, 2023
1 parent 9bfefe0 commit ab3ae9b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sources/installerfpc.pas
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@ function TFPCCrossInstaller.CompilerUpdateNeeded:boolean;
// Look at fileage
NativeAge:=FileAge(NativeCompiler);
CrossAge:=FileAge(CrossCompiler);
if (NativeAge>=CrossAge) then result:=true
result:=(NativeAge>CrossAge);
end;
end;
end;
Expand Down

0 comments on commit ab3ae9b

Please sign in to comment.