mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-11-10 01:59:35 +01:00
* fixed (harmless) range error in 64 bit BSD-based RTLs
git-svn-id: trunk@33736 -
This commit is contained in:
parent
bd06efefa2
commit
60d75fa97e
@ -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;
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user