remove unneeded cast
This commit is contained in:
parent
2fa4abe63f
commit
bd318306e9
|
@ -565,7 +565,7 @@ tr_stat_t * tr_torrentStat( tr_torrent_t * tor )
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
s->eta = (float) ( 1.0 - s->progress ) *
|
s->eta = ( 1.0 - s->progress ) *
|
||||||
(float) inf->totalSize / s->rateDownload / 1024.0;
|
(float) inf->totalSize / s->rateDownload / 1024.0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue