Explorar o código

* compilation on non x86 fixed

git-svn-id: trunk@22330 -
florian %!s(int64=13) %!d(string=hai) anos
pai
achega
57ee96ef86
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      rtl/inc/generic.inc

+ 1 - 1
rtl/inc/generic.inc

@@ -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}