summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorErich Eckner <git@eckner.net>2018-02-20 10:37:42 +0100
committerErich Eckner <git@eckner.net>2018-02-20 10:37:42 +0100
commit3292025bdad39362c59f30ce32d6a93dccbec7d3 (patch)
treee14310be44f033f6819decad36cb460a1788d2d8
parent1382efbb67fa1d3d9b7d008fbcf1ba58ecd8f633 (diff)
downloadMake-3292025bdad39362c59f30ce32d6a93dccbec7d3.tar.xz
tools.pas: cleanup
-rw-r--r--tools.pas2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools.pas b/tools.pas
index ffcf199..8873cb5 100644
--- a/tools.pas
+++ b/tools.pas
@@ -313,7 +313,7 @@ begin
i:=findeIndex(regEx);
if (i>=0) and (i<count) and (sItems[i].name=regEx) then begin
setLength(indizes,1);
- indizes[0]:=longint(sortiert[i]);
+ indizes[0]:=sortiert[i];
end;
end;
end;