From: paul Date: Fri, 13 Dec 2002 21:47:59 +0000 (+0000) Subject: change log message fron signed to unsigned decimal X-Git-Tag: frr-2.0-rc1~4182 X-Git-Url: https://git.puffer.fish/?a=commitdiff_plain;h=efa9f8300965d53d11b8a24efbab4b3644af7ff5;p=mirror%2Ffrr.git change log message fron signed to unsigned decimal --- diff --git a/bgpd/bgp_aspath.c b/bgpd/bgp_aspath.c index fc5efb1967..d30ef4cc67 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); }