Changeset 14528
- Timestamp:
- May 9, 2015, 2:10:55 PM (6 years ago)
- Location:
- trunk/libtransmission
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/libtransmission/net.h
r14479 r14528 153 153 tr_port * setme_port); 154 154 155 inttr_netSetTOS (tr_socket_t s,155 void tr_netSetTOS (tr_socket_t s, 156 156 int tos); 157 157 158 inttr_netSetCongestionControl (tr_socket_t s,159 const char * algorithm);158 void tr_netSetCongestionControl (tr_socket_t s, 159 const char * algorithm); 160 160 161 161 void tr_netClose (tr_session * session, -
trunk/libtransmission/verify.c
r14355 r14528 94 94 tr_sha1_update (sha, buffer, bytesThisPass); 95 95 #if defined HAVE_POSIX_FADVISE && defined POSIX_FADV_DONTNEED 96 posix_fadvise (fd, filePos, bytesThisPass, POSIX_FADV_DONTNEED);96 (void) posix_fadvise (fd, filePos, bytesThisPass, POSIX_FADV_DONTNEED); 97 97 #endif 98 98 }
Note: See TracChangeset
for help on using the changeset viewer.