summaryrefslogtreecommitdiffstats
path: root/proto/ospf/topology.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 /proto/ospf/topology.c
parent30b773041c37d10649a16d5f28af00a25871aac7 (diff)
downloadbird-e43ae6330eaf349eafe6820465c85266eef80e07.tar
bird-e43ae6330eaf349eafe6820465c85266eef80e07.zip
Fix %<something>I format strings.
Diffstat (limited to 'proto/ospf/topology.c')
-rw-r--r--proto/ospf/topology.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/proto/ospf/topology.c b/proto/ospf/topology.c
index f8a0d4c..2dfe3ac 100644
--- a/proto/ospf/topology.c
+++ b/proto/ospf/topology.c
@@ -629,7 +629,7 @@ ospf_top_dump(struct top_graph *f, struct proto *p)
struct top_hash_entry *e = f->hash_table[i];
while (e)
{
- OSPF_TRACE(D_EVENTS, "\t%1x %8I %8I %4u 0x%08x",
+ OSPF_TRACE(D_EVENTS, "\t%1x %-1I %-1I %4u 0x%08x",
e->lsa.type, e->lsa.id,
e->lsa.rt, e->lsa.age, e->lsa.sn);
e = e->next;