From e8614030a290d0332bce1f933849bc1b8ea45e9d Mon Sep 17 00:00:00 2001 From: Jordan Lee Date: Wed, 2 Feb 2011 23:33:25 +0000 Subject: [PATCH] (trunk libT) #3973 "JIT verification verifies fresh downloaded torrents" -- remove a debugging printf() statement that shouldn't have been checked in. --- libtransmission/torrent.c | 1 - 1 file changed, 1 deletion(-) diff --git a/libtransmission/torrent.c b/libtransmission/torrent.c index 8a5293fd7..593d94885 100644 --- a/libtransmission/torrent.c +++ b/libtransmission/torrent.c @@ -2962,7 +2962,6 @@ tr_torrentFileCompleted( tr_torrent * tor, tr_file_index_t fileNum ) /* now that the file is complete and closed, we can start watching its * mtime timestamp for changes to know if we need to reverify pieces */ - fprintf( stderr, "file %d completed.. setting all files' timestamps to %zu (%s)\n", (int)fileNum, (size_t)now, f->name ); for( p=&inf->pieces[f->firstPiece], pend=&inf->pieces[f->lastPiece]; p!=pend; ++p ) p->timeChecked = now;