mirror of
https://github.com/transmission/transmission
synced 2025-02-22 06:00:41 +00:00
(libT) that last commit should be a tr_bool, not an int. (BentMyWookie)
This commit is contained in:
parent
b8e6d5fbdc
commit
6615e162c6
1 changed files with 2 additions and 2 deletions
|
@ -103,7 +103,7 @@ natPulse( tr_shared * s )
|
|||
static void
|
||||
incomingPeersPulse( tr_shared * s )
|
||||
{
|
||||
int allPaused;
|
||||
tr_bool allPaused;
|
||||
tr_torrent * tor;
|
||||
|
||||
if( s->bindSocket >= 0 && ( s->bindPort != s->publicPort ) )
|
||||
|
@ -174,7 +174,7 @@ incomingPeersPulse( tr_shared * s )
|
|||
static int
|
||||
sharedPulse( void * vshared )
|
||||
{
|
||||
int keepPulsing = 1;
|
||||
tr_bool keepPulsing = 1;
|
||||
tr_shared * shared = vshared;
|
||||
|
||||
natPulse( shared );
|
||||
|
|
Loading…
Reference in a new issue