mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-08-06 10:54:47 +00:00
pimd: Display drpriority as a unsigned int
There existed output code that used %d for a uint32_t switch to a %u. Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
This commit is contained in:
parent
86dd09667a
commit
f116689efb
@ -1191,7 +1191,7 @@ static void pim_show_interfaces_single(struct pim_instance *pim,
|
||||
vty_out(vty, "Designated Router\n");
|
||||
vty_out(vty, "-----------------\n");
|
||||
vty_out(vty, "Address : %s\n", dr_str);
|
||||
vty_out(vty, "Priority : %d(%d)\n",
|
||||
vty_out(vty, "Priority : %u(%d)\n",
|
||||
pim_ifp->pim_dr_priority,
|
||||
pim_ifp->pim_dr_num_nondrpri_neighbors);
|
||||
vty_out(vty, "Uptime : %s\n", dr_uptime);
|
||||
|
Loading…
Reference in New Issue
Block a user