From d4816f746129de2ddcd4e9c6545b57643604dc8f Mon Sep 17 00:00:00 2001 From: Charles Kerr Date: Mon, 5 Jul 2010 22:49:07 +0000 Subject: [PATCH] (trunk libT) remove some debugging printf()s that were accidentally committed in r10941 --- libtransmission/peer-mgr.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/libtransmission/peer-mgr.c b/libtransmission/peer-mgr.c index 4198c3e84..2749cd9ba 100644 --- a/libtransmission/peer-mgr.c +++ b/libtransmission/peer-mgr.c @@ -3465,7 +3465,6 @@ getPeerCandidates( tr_session * session, int * candidateCount ) while(( tor = tr_torrentNext( session, tor ))) n += tr_ptrArraySize( &tor->torrentPeers->pool ); walk = candidates = tr_new( struct peer_candidate, n ); -fprintf( stderr, "nCandidates is %d\n", (int)n ); /* populate the candidate array */ tor = NULL; @@ -3502,7 +3501,6 @@ fprintf( stderr, "nCandidates is %d\n", (int)n ); } *candidateCount = walk - candidates; -fprintf( stderr, "candidateCount is %d\n", (int)(*candidateCount) ); if( *candidateCount > 1 ) qsort( candidates, *candidateCount, sizeof( struct peer_candidate ), comparePeerCandidates ); return candidates;