Changeset 14266
- Timestamp:
- Apr 27, 2014, 11:10:01 PM (8 years ago)
- Location:
- trunk/libtransmission
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/libtransmission/net.c
r14069 r14266 60 60 tr_netInit (void) 61 61 { 62 static intinitialized = false;62 static bool initialized = false; 63 63 64 64 if (!initialized) -
trunk/libtransmission/peer-msgs.c
r14241 r14266 1340 1340 const int peerIsChoked = msgs->peer_is_choked; 1341 1341 1342 intallow = false;1342 bool allow = false; 1343 1343 1344 1344 if (!reqIsValid) -
trunk/libtransmission/session.c
r14241 r14266 1244 1244 tr_sessionGetActiveSpeedLimit_Bps (const tr_session * session, tr_direction dir, unsigned int * setme_Bps) 1245 1245 { 1246 intisLimited = true;1246 bool isLimited = true; 1247 1247 1248 1248 if (!tr_isSession (session)) -
trunk/libtransmission/utils-test.c
r14241 r14266 205 205 const int A[] = { 1, 2, 3, 3, 3, 5, 8 }; 206 206 const int expected_pos[] = { 0, 1, 2, 5, 5, 6, 6, 6, 7, 7 }; 207 const intexpected_exact[] = { true, true, true, false, true, false, false, true, false, false };207 const bool expected_exact[] = { true, true, true, false, true, false, false, true, false, false }; 208 208 const int N = sizeof (A) / sizeof (A[0]); 209 209 -
trunk/libtransmission/variant-json.c
r14241 r14266 605 605 { 606 606 struct jsonWalk * data = vdata; 607 intemptyContainer = false;607 bool emptyContainer = false; 608 608 609 609 jsonPopParent (data);
Note: See TracChangeset
for help on using the changeset viewer.