ospf6d: Fix printf % code usage

Use correct % code in printf statement.

Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
Reviewed-by: Don Slice <dslice@cumulusnetworks.com>
Reviewed-by: Daniel Walton <dwalton@cumulusnetworks.com>
This commit is contained in:
Donald Sharp 2016-05-06 19:32:00 -04:00
parent 540766e7a3
commit 79c5d9f333

View File

@ -931,7 +931,7 @@ ospf6_interface_show (struct vty *vty, struct interface *ifp)
"disabled" : "enabled", VNL); "disabled" : "enabled", VNL);
inet_ntop (AF_INET, &oi->area->area_id, inet_ntop (AF_INET, &oi->area->area_id,
strbuf, sizeof (strbuf)); strbuf, sizeof (strbuf));
vty_out (vty, " Area ID %s, Cost %hu%s", strbuf, oi->cost, vty_out (vty, " Area ID %s, Cost %u%s", strbuf, oi->cost,
VNL); VNL);
} }
else else