Explorar el Código

Merged revisions 4473 via svnmerge from
http://svn.freepascal.org/svn/fpc/trunk

r4473 (florian)
* fixed typo

git-svn-id: branches/fixes_2_0@4474 -

florian hace 19 años
padre
commit
29c370bc81
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      rtl/inc/objects.pp

+ 1 - 1
rtl/inc/objects.pp

@@ -2222,7 +2222,7 @@ BEGIN
    L := 0;                                            { Start count }
    H := Count - 1;                                    { End count }
    Index := 0;
-   if H<=0 then
+   if Count=0 then
      exit;
    While (L <= H) Do Begin
      I := (L + H) SHR 1;                              { Mid point }