* fixed (harmless) range error in 64 bit BSD-based RTLs

git-svn-id: trunk@33736 -
This commit is contained in:
Jonas Maebe 2016-05-21 14:48:32 +00:00
parent bd06efefa2
commit 60d75fa97e

View File

@ -46,7 +46,7 @@ function fpfdfillset(var nset : TFDSet):cint;
var i :longint;
Begin
for i:=0 to wordsinfdset-1 DO nset[i]:=Culong(NOT 0);
for i:=0 to wordsinfdset-1 DO nset[i]:=Culong((NOT 0) and ln2bitmask);
fpfdfillset:=0;
End;