1
0
Fork 0
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:
Charles Kerr 2008-12-02 22:51:44 +00:00
parent b8e6d5fbdc
commit 6615e162c6

View file

@ -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 );