summaryrefslogtreecommitdiffstats
path: root/nest/rt-table.c
diff options
context:
space:
mode:
authorMartin Mares <mj@ucw.cz>2001-08-19 13:15:24 +0200
committerMartin Mares <mj@ucw.cz>2001-08-19 13:15:24 +0200
commite43ae6330eaf349eafe6820465c85266eef80e07 (patch)
treeac2a601c21c65238331783593fa2774d29910700 /nest/rt-table.c
parent30b773041c37d10649a16d5f28af00a25871aac7 (diff)
downloadbird-e43ae6330eaf349eafe6820465c85266eef80e07.tar
bird-e43ae6330eaf349eafe6820465c85266eef80e07.zip
Fix %<something>I format strings.
Diffstat (limited to 'nest/rt-table.c')
-rw-r--r--nest/rt-table.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/nest/rt-table.c b/nest/rt-table.c
index e095a14..d313dbc 100644
--- a/nest/rt-table.c
+++ b/nest/rt-table.c
@@ -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);