diff --git a/libtransmission/torrent.c b/libtransmission/torrent.c index 4005cd807..c57cf5f1f 100644 --- a/libtransmission/torrent.c +++ b/libtransmission/torrent.c @@ -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