1
0
Fork 0
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:
Charles Kerr 2008-10-29 12:08:26 +00:00
parent 29f93e3147
commit 717cd562e6

View file

@ -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;
}