(trunk libT) tweak r7985

This commit is contained in:
Charles Kerr 2009-03-01 17:38:23 +00:00
parent d2f69877cf
commit 6fc252e007
1 changed files with 1 additions and 1 deletions

View File

@ -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;