mirror of
https://github.com/transmission/transmission
synced 2024-12-26 09:37:56 +00:00
(trunk libT) silence implicit size_t-to-int compiler warning
This commit is contained in:
parent
197cf649bf
commit
f585379bed
1 changed files with 1 additions and 1 deletions
|
@ -183,7 +183,7 @@ tr_torrentSetMetadataPiece( tr_torrent * tor,
|
|||
int err;
|
||||
tr_benc dict;
|
||||
struct evbuffer * buf = evbuffer_new( );
|
||||
dbgmsg( tor, "metadata checksum passed! (length: %d)", m->metadata_size );
|
||||
dbgmsg( tor, "metadata checksum passed! (length: %d)", (int)m->metadata_size );
|
||||
|
||||
/* add a wrapper dictionary to the benc.
|
||||
* include the announce-list too,
|
||||
|
|
Loading…
Reference in a new issue