Changeset 6217


Ignore:
Timestamp:
Jun 17, 2008, 6:47:31 PM (15 years ago)
Author:
charles
Message:

(libT) fix compiler warning.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/libtransmission/rpc-utils.c

    r6213 r6217  
    4040compareTorrentsByAge( const void * a, const void * b )
    4141{
    42     const tr_torrent * ta = * (tr_torrent **) a;
    43     const tr_torrent * tb = * (tr_torrent **) b;
     42    tr_torrent * ta = * (tr_torrent **) a;
     43    tr_torrent * tb = * (tr_torrent **) b;
    4444    return tr_compareTime( tr_torrentStatCached( ta )->addedDate,
    4545                           tr_torrentStatCached( tb )->addedDate );
Note: See TracChangeset for help on using the changeset viewer.