mirror of
https://github.com/transmission/transmission
synced 2025-03-15 16:29:34 +00:00
(libT) fix compiler warning.
This commit is contained in:
parent
a6d1c8bc28
commit
ed29e553f1
1 changed files with 2 additions and 2 deletions
|
@ -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 );
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue