]> granicus.if.org Git - transmission/commitdiff
remove a few straggling uses of %zu to follow up on the previous TR_PRIuSIZE commit
authorJordan Lee <jordan@transmissionbt.com>
Sun, 8 Sep 2013 17:36:11 +0000 (17:36 +0000)
committerJordan Lee <jordan@transmissionbt.com>
Sun, 8 Sep 2013 17:36:11 +0000 (17:36 +0000)
libtransmission/blocklist.c

index 72894891824425f2b9b9941948dedd95fda9cb54..f593634dcaa5f7715112838db4c757e8038d1270 100644 (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);
     }