#972 (partial) Transmission fails to compile with Sun Studio due to funky C code

This commit is contained in:
Charles Kerr 2008-05-28 13:03:34 +00:00
parent 36223c112e
commit ad2146cc24
1 changed files with 5 additions and 4 deletions

View File

@ -863,11 +863,12 @@ tr_torrentPeersFree( tr_peer_stat * peers, int peerCount UNUSED )
tr_free( peers );
}
void tr_torrentAvailability( const tr_torrent * tor, int8_t * tab, int size )
void
tr_torrentAvailability( const tr_torrent * tor, int8_t * tab, int size )
{
return tr_peerMgrTorrentAvailability( tor->handle->peerMgr,
tor->info.hash,
tab, size );
tr_peerMgrTorrentAvailability( tor->handle->peerMgr,
tor->info.hash,
tab, size );
}
void