Changeset 14527 for trunk/libtransmission/file-posix.c
- Timestamp:
- May 9, 2015, 2:09:05 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/libtransmission/file-posix.c
r14493 r14527 138 138 #ifdef HAVE_POSIX_FADVISE 139 139 140 posix_fadvise (handle, 0, 0, POSIX_FADV_SEQUENTIAL);140 (void) posix_fadvise (handle, 0, 0, POSIX_FADV_SEQUENTIAL); 141 141 142 142 #endif … … 144 144 #ifdef __APPLE__ 145 145 146 fcntl (handle, F_RDAHEAD, 1);147 fcntl (handle, F_NOCACHE, 1);146 (void) fcntl (handle, F_RDAHEAD, 1); 147 (void) fcntl (handle, F_NOCACHE, 1); 148 148 149 149 #endif
Note: See TracChangeset
for help on using the changeset viewer.