remove a few straggling uses of %zu to follow up on the previous TR_PRIuSIZE commit

This commit is contained in:
Jordan Lee 2013-09-08 17:36:11 +00:00
parent ea7d2482dd
commit 677769a462
1 changed files with 2 additions and 2 deletions

View File

@ -113,7 +113,7 @@ blocklistLoad (tr_blocklistFile * b)
b->ruleCount = byteCount / sizeof (struct tr_ipv4_range);
base = tr_basename (b->filename);
tr_logAddInfo (_("Blocklist \"%s\" contains %zu entries"), base, b->ruleCount);
tr_logAddInfo (_("Blocklist \"%s\" contains %"TR_PRIuSIZE" entries"), base, b->ruleCount);
tr_free (base);
}
@ -422,7 +422,7 @@ tr_blocklistFileSetContent (tr_blocklistFile * b, const char * filename)
else
{
char * base = tr_basename (b->filename);
tr_logAddInfo (_("Blocklist \"%s\" updated with %zu entries"), base, ranges_count);
tr_logAddInfo (_("Blocklist \"%s\" updated with %"TR_PRIuSIZE" entries"), base, ranges_count);
tr_free (base);
}