diff options
author | Martin Mares <mj@ucw.cz> | 2001-08-19 13:15:24 +0200 |
---|---|---|
committer | Martin Mares <mj@ucw.cz> | 2001-08-19 13:15:24 +0200 |
commit | e43ae6330eaf349eafe6820465c85266eef80e07 (patch) | |
tree | ac2a601c21c65238331783593fa2774d29910700 /proto/static | |
parent | 30b773041c37d10649a16d5f28af00a25871aac7 (diff) | |
download | bird-e43ae6330eaf349eafe6820465c85266eef80e07.tar bird-e43ae6330eaf349eafe6820465c85266eef80e07.zip |
Fix %<something>I format strings.
Diffstat (limited to 'proto/static')
-rw-r--r-- | proto/static/static.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/proto/static/static.c b/proto/static/static.c index eb6c1c1..c532479 100644 --- a/proto/static/static.c +++ b/proto/static/static.c @@ -150,7 +150,7 @@ static_neigh_notify(struct neighbor *n) static void static_dump_rt(struct static_route *r) { - debug("%16I/%2d: ", r->net, r->masklen); + debug("%-1I/%2d: ", r->net, r->masklen); switch (r->dest) { case RTD_ROUTER: |