diff options
author | Martin Mares <mj@ucw.cz> | 1998-06-17 14:36:02 +0000 |
---|---|---|
committer | Martin Mares <mj@ucw.cz> | 1998-06-17 14:36:02 +0000 |
commit | 962ba482fd7bba97cf13a96105503efff4dcb88a (patch) | |
tree | 78a9b7a31077b3c311710f56afa4572c4eaeb582 /nest/rt-attr.c | |
parent | d997534f65903e8078efe2f8ceb19941692598f7 (diff) |
Use '%I' instead of dirty address printing hacks.
Diffstat (limited to 'nest/rt-attr.c')
-rw-r--r-- | nest/rt-attr.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/nest/rt-attr.c b/nest/rt-attr.c index d6a57235..fa92d665 100644 --- a/nest/rt-attr.c +++ b/nest/rt-attr.c @@ -144,9 +144,9 @@ rta_dump(rta *a) debug(" EXT"); if (a->flags & RTF_TAGGED) debug(" TAG"); - debug(" <-%08x", _I(a->from)); + debug(" <-%I", a->from); if (a->dest == RTD_ROUTER) - debug(" ->%08x", _I(a->gw)); + debug(" ->%I", a->gw); if (a->dest == RTD_DEVICE || a->dest == RTD_ROUTER) debug(" [%s]", a->iface->name); } |