mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-11-16 19:39:31 +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;
|
var i :longint;
|
||||||
|
|
||||||
Begin
|
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;
|
fpfdfillset:=0;
|
||||||
End;
|
End;
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user