* compilation on non x86 fixed

git-svn-id: trunk@22330 -
This commit is contained in:
florian 2012-09-05 18:49:48 +00:00
parent 03bf93488b
commit 57ee96ef86

View File

@ -2434,7 +2434,7 @@ function BsfQWord(Const AValue : QWord): cardinal;
result:=$ff;
if lo(AValue) <> 0 then
result:=BsfDWord(lo(AValue))
else hi(AValue) <> 0 then
else if hi(AValue) <> 0 then
result:=BsfDWord(hi(AValue)) + 32;
end;
{$endif}