mirror of
https://github.com/transmission/transmission
synced 2024-12-26 09:37:56 +00:00
(trunk libT) tweak r7985
This commit is contained in:
parent
d2f69877cf
commit
6fc252e007
1 changed files with 1 additions and 1 deletions
|
@ -2128,7 +2128,7 @@ tr_torrentCheckSeedRatio( tr_torrent * tor )
|
|||
/* if we're seeding and we've reached our seed ratio limit, stop the torrent */
|
||||
if( tr_torrentIsSeed( tor ) && tr_torrentGetSeedRatio( tor, &seedRatio ) )
|
||||
{
|
||||
const double up = tor->uploadedCur + tor->uploadedPrev;
|
||||
const uint64_t up = tor->uploadedCur + tor->uploadedPrev;
|
||||
uint64_t down = tor->downloadedCur + tor->downloadedPrev;
|
||||
double ratio;
|
||||
|
||||
|
|
Loading…
Reference in a new issue