summaryrefslogtreecommitdiffstats
path: root/ospf6d
diff options
context:
space:
mode:
authorDavid Lamparter <equinox@opensourcerouting.org>2015-03-03 09:08:20 +0100
committerDavid Lamparter <equinox@opensourcerouting.org>2015-04-21 10:18:58 +0200
commit72c69d434840598a158747ba9f69dad536f96cea (patch)
treee03e73f818cc2497bc991ae133a990e67358d136 /ospf6d
parent0de0138a9146074f268245193e45c9376d998722 (diff)
downloadquagga-72c69d434840598a158747ba9f69dad536f96cea.tar.bz2
quagga-72c69d434840598a158747ba9f69dad536f96cea.tar.xz
ospf6d: oi->cost is uint32, not short
Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
Diffstat (limited to 'ospf6d')
-rw-r--r--ospf6d/ospf6_interface.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ospf6d/ospf6_interface.c b/ospf6d/ospf6_interface.c
index 7c2d46fe..c9c90117 100644
--- a/ospf6d/ospf6_interface.c
+++ b/ospf6d/ospf6_interface.c
@@ -914,7 +914,7 @@ ospf6_interface_show (struct vty *vty, struct interface *ifp)
"disabled" : "enabled", VNL);
inet_ntop (AF_INET, &oi->area->area_id,
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);
}
else