Changeset 14384
- Timestamp:
- Dec 13, 2014, 5:04:14 PM (8 years ago)
- Location:
- trunk/libtransmission
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/libtransmission/peer-mgr.c
r14382 r14384 2896 2896 const int inc = maxIncrease * mult; 2897 2897 maxPeers = s->maxPeers + inc; 2898 tordbg (s, "time since last cancel is %"PRId 64" -- increasing the "2898 tordbg (s, "time since last cancel is %"PRIdMAX" -- increasing the " 2899 2899 "number of peers we're interested in by %d", 2900 ( long long)timeSinceCancel, inc);2900 (intmax_t)timeSinceCancel, inc); 2901 2901 } 2902 2902 } -
trunk/libtransmission/transmission.h
r14383 r14384 65 65 #else 66 66 #define PRIu32 "lu" 67 #endif 68 #endif 69 70 #ifndef PRIdMAX 71 #ifdef _WIN32 72 #define PRIdMAX "I64" 73 #else 74 #define PRIdMAX "jd" 67 75 #endif 68 76 #endif
Note: See TracChangeset
for help on using the changeset viewer.