(libT) fix compiler warning.

This commit is contained in:
Charles Kerr 2008-06-17 18:47:31 +00:00
parent a6d1c8bc28
commit ed29e553f1
1 changed files with 2 additions and 2 deletions

View File

@ -39,8 +39,8 @@ compareTorrentsByActivity( const void * a, const void * b )
static int
compareTorrentsByAge( const void * a, const void * b )
{
const tr_torrent * ta = * (tr_torrent **) a;
const tr_torrent * tb = * (tr_torrent **) b;
tr_torrent * ta = * (tr_torrent **) a;
tr_torrent * tb = * (tr_torrent **) b;
return tr_compareTime( tr_torrentStatCached( ta )->addedDate,
tr_torrentStatCached( tb )->addedDate );
}