summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorpaul <paul>2002-12-13 21:47:59 +0000
committerpaul <paul>2002-12-13 21:47:59 +0000
commit283e63ab82ed03dc9f8674f92663fb3352d1c57d (patch)
treef7cc4be73d057cfc82ce1cbcd0c2eaee68037963
parentfdc64b8740747007d9fc8587f1ecbd4c4e2b50c0 (diff)
downloadquagga-283e63ab82ed03dc9f8674f92663fb3352d1c57d.tar.bz2
quagga-283e63ab82ed03dc9f8674f92663fb3352d1c57d.tar.xz
change log message fron signed to unsigned decimal
-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);
}