(trunk, libT) #5709 'Fix an instance of time_t printing' -- fixed, patch by naddy

This commit is contained in:
Jordan Lee 2014-07-03 19:28:21 +00:00
parent 084273c106
commit b939f98ec7
1 changed files with 2 additions and 2 deletions

View File

@ -2892,9 +2892,9 @@ rechokeDownloads (tr_swarm * s)
const double mult = MIN (timeSinceCancel, maxHistory) / (double) maxHistory;
const int inc = maxIncrease * mult;
maxPeers = s->maxPeers + inc;
tordbg (s, "time since last cancel is %li -- increasing the "
tordbg (s, "time since last cancel is %lli -- increasing the "
"number of peers we're interested in by %d",
timeSinceCancel, inc);
(long long)timeSinceCancel, inc);
}
}