if at first you don't succeed...

This commit is contained in:
Charles Kerr 2008-04-20 22:06:05 +00:00
parent c4878448a9
commit 8805366e28
1 changed files with 1 additions and 1 deletions

View File

@ -95,7 +95,7 @@ compareOffsetToFile( const void * a, const void * b )
const tr_file * file = b;
if( offset < file->offset ) return -1;
if( offset > file->offset + file->length ) return 1;
if( offset >= file->offset + file->length ) return 1;
return 0;
}