1
0
mirror of https://gitlab.labs.nic.cz/labs/bird.git synced 2024-05-11 16:54:54 +00:00

Fix %<something>I format strings.

This commit is contained in:
Martin Mares
2001-08-19 11:15:24 +00:00
parent 30b773041c
commit e43ae6330e
6 changed files with 6 additions and 6 deletions

View File

@@ -538,7 +538,7 @@ rte_dump(rte *e)
{
net *n = e->net;
if (n)
debug("%1I/%2d ", n->n.prefix, n->n.pxlen);
debug("%-1I/%2d ", n->n.prefix, n->n.pxlen);
else
debug("??? ");
debug("KF=%02x PF=%02x pref=%d lm=%d ", n->n.flags, e->pflags, e->pref, now-e->lastmod);