]> granicus.if.org Git - transmission/commitdiff
(trunk libT) fix a typo that made jhujhiti giggle
authorCharles Kerr <charles@transmissionbt.com>
Fri, 2 Jan 2009 22:06:11 +0000 (22:06 +0000)
committerCharles Kerr <charles@transmissionbt.com>
Fri, 2 Jan 2009 22:06:11 +0000 (22:06 +0000)
libtransmission/bandwidth.c

index e0841519ae958416c21490498285395e51c2626a..22c67ad13d89657691b90ce6a38bdd2668edfcf2 100644 (file)
@@ -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 )
     {