(trunk libT) very minor style cleanup in tr_bandwidthAllocate()

This commit is contained in:
Charles Kerr 2009-01-02 04:46:38 +00:00
parent 461ecff904
commit 8eda177838
1 changed files with 3 additions and 4 deletions

View File

@ -316,12 +316,12 @@ tr_bandwidthAllocate( tr_bandwidth * b,
* and/or peers that can use it */
n = peerCount;
i = n ? tr_cryptoWeakRandInt( n ) : 0; /* pick a random starting point */
for( ; n>1 ; )
while( n > 1 )
{
const int increment = 1024;
const int byteCount = tr_peerIoFlush( peers[i], dir, increment);
const int bytesUsed = tr_peerIoFlush( peers[i], dir, increment);
if( byteCount == increment )
if( bytesUsed == increment )
++i;
else {
/* peer is done writing for now; move it to the end of the list */
@ -331,7 +331,6 @@ tr_bandwidthAllocate( tr_bandwidth * b,
--n;
}
assert( i <= n );
if( i == n )
i = 0;
}