summaryrefslogtreecommitdiff
path: root/bgpd/bgp_aspath.c
diff options
context:
space:
mode:
authorpaul <paul>2002-12-13 21:47:59 +0000
committerpaul <paul>2002-12-13 21:47:59 +0000
commitefa9f8300965d53d11b8a24efbab4b3644af7ff5 (patch)
tree1f049aaed5fda2835d0a2bf192997b47e8837c50 /bgpd/bgp_aspath.c
parentf2c806522030d4964b4ca649637a7901751d8496 (diff)
change log message fron signed to unsigned decimal
Diffstat (limited to 'bgpd/bgp_aspath.c')
-rw-r--r--bgpd/bgp_aspath.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/bgpd/bgp_aspath.c b/bgpd/bgp_aspath.c
index fc5efb19..d30ef4cc 100644
--- a/bgpd/bgp_aspath.c
+++ b/bgpd/bgp_aspath.c
@@ -1170,7 +1170,7 @@ aspath_show_all_iterator (struct hash_backet *backet, struct vty *vty)
as = (struct aspath *) backet->data;
- vty_out (vty, "[%p:%d] (%ld) ", backet, backet->key, as->refcnt);
+ vty_out (vty, "[%p:%u] (%ld) ", backet, backet->key, as->refcnt);
vty_out (vty, "%s%s", as->str, VTY_NEWLINE);
}