mirror of
https://github.com/transmission/transmission
synced 2025-03-10 14:13:23 +00:00
(libT) fix r6981 signed/unsigned compiler warning
This commit is contained in:
parent
29f93e3147
commit
717cd562e6
1 changed files with 1 additions and 1 deletions
|
@ -633,7 +633,7 @@ tr_buildPath( const char *first_element, ... )
|
|||
|
||||
/* sanity checks & return */
|
||||
*pch++ = '\0';
|
||||
assert( pch - buf == bufLen );
|
||||
assert( pch - buf == (off_t)bufLen );
|
||||
return buf;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue