Standardize our printf code on %d, not %i.

This commit is contained in:
Nick Mathewson
2011-04-19 12:40:26 -04:00
parent 177cadff8d
commit 5cc322e547
3 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -604,7 +604,7 @@ tor_addr_parse_mask_ports(const char *s, tor_addr_t *addr_out,
if (family == AF_INET6 && v4map) {
if (bits > 32 && bits < 96) { /* Crazy */
log_warn(LD_GENERAL,
"Bad mask bits %i for V4-mapped V6 address; rejecting.",
"Bad mask bits %d for V4-mapped V6 address; rejecting.",
bits);
goto err;
}