]> git.puffer.fish Git - mirror/frr.git/commitdiff
change log message fron signed to unsigned decimal
authorpaul <paul>
Fri, 13 Dec 2002 21:47:59 +0000 (21:47 +0000)
committerpaul <paul>
Fri, 13 Dec 2002 21:47:59 +0000 (21:47 +0000)
bgpd/bgp_aspath.c

index fc5efb19678ecbec759ae14bdf2903f9c794bcc4..d30ef4cc67cf261769e913425ff54497e68492c2 100644 (file)
@@ -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);
 }