remove unneeded cast

This commit is contained in:
Mitchell Livingston 2007-01-17 01:32:45 +00:00
parent 2fa4abe63f
commit bd318306e9
1 changed files with 1 additions and 1 deletions

View File

@ -565,7 +565,7 @@ tr_stat_t * tr_torrentStat( tr_torrent_t * tor )
}
else
{
s->eta = (float) ( 1.0 - s->progress ) *
s->eta = ( 1.0 - s->progress ) *
(float) inf->totalSize / s->rateDownload / 1024.0;
}