(trunk libT) fix compiler warnings on non-glibc systems

This commit is contained in:
Charles Kerr 2010-08-06 23:28:30 +00:00
parent 69ca9706b9
commit 7b3757f6ad
1 changed files with 2 additions and 2 deletions

View File

@ -111,7 +111,7 @@ blocklistLoad( tr_blocklist * b )
{
char * base = tr_basename( b->filename );
tr_inf( _( "Blocklist \"%s\" contains %'zu entries" ), base, b->ruleCount );
tr_inf( _( "Blocklist \"%s\" contains %zu entries" ), base, b->ruleCount );
tr_free( base );
}
}
@ -367,7 +367,7 @@ _tr_blocklistSetContent( tr_blocklist * b,
{
char * base = tr_basename( b->filename );
tr_inf( _( "Blocklist \"%s\" updated with %'d entries" ), base, outCount );
tr_inf( _( "Blocklist \"%s\" updated with %d entries" ), base, outCount );
tr_free( base );
}