1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2025-03-12 15:14:12 +00:00

remove unused variable

This commit is contained in:
Mitchell Livingston 2009-11-09 13:29:02 +00:00
parent 08995988a1
commit 185728c66c

View file

@ -248,7 +248,6 @@ tr_prefetch( int fd, off_t offset, size_t count )
#ifdef HAVE_POSIX_FADVISE #ifdef HAVE_POSIX_FADVISE
return posix_fadvise( fd, offset, count, POSIX_FADV_WILLNEED ); return posix_fadvise( fd, offset, count, POSIX_FADV_WILLNEED );
#elif defined(SYS_DARWIN) #elif defined(SYS_DARWIN)
int val;
struct radvisory radv; struct radvisory radv;
radv.ra_offset = offset; radv.ra_offset = offset;
radv.ra_count = count; radv.ra_count = count;