From 4addf02246b966090374b8643dddc6274a51974d Mon Sep 17 00:00:00 2001 From: Charles Kerr Date: Fri, 2 Jan 2009 22:06:11 +0000 Subject: [PATCH] (trunk libT) fix a typo that made jhujhiti giggle --- libtransmission/bandwidth.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libtransmission/bandwidth.c b/libtransmission/bandwidth.c index e0841519a..22c67ad13 100644 --- a/libtransmission/bandwidth.c +++ b/libtransmission/bandwidth.c @@ -218,7 +218,7 @@ tr_bandwidthAllocate( tr_bandwidth * b, * small chunk of bandwidth. Keep looping until we run out of bandwidth * and/or peers that can use it */ n = peerCount; - dbgmsg( "direction %s ... %d pees to go round-robin", (dir==TR_UP?"UP":"DOWN"), n ); + dbgmsg( "%d peers to go round-robin for %s", n, (dir==TR_UP?"upload":"download") ); i = n ? tr_cryptoWeakRandInt( n ) : 0; /* pick a random starting point */ while( n > 1 ) {