intval -> (int)

This commit is contained in:
Miles Lott 2003-12-15 01:22:13 +00:00
parent df474920e7
commit 5a63f7cfd0

View File

@ -151,11 +151,11 @@
$i*=10; $i*=10;
} }
$j=0; $j = 0;
while ($i!=$j) while($i != $j)
{ {
$k= $j+intval(($i-$j)/2); $k = $j + (int)(($i-$j) / 2);
if (odbc_fetch_row($this->Query_ID, $k)) if(odbc_fetch_row($this->Query_ID, $k))
{ {
$j=$k; $j=$k;
} }