diff options
| author | Donald Sharp <sharpd@cumulusnetworks.com> | 2017-04-04 07:50:31 -0400 |
|---|---|---|
| committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2017-04-04 07:50:31 -0400 |
| commit | 97d2cd8d0c54279407cef16f070231912ef85a00 (patch) | |
| tree | 71e4d83becfdc25476910789372dfccd1011f032 /zebra/interface.c | |
| parent | eb649b7ff38df75fb2b5fc20a552b9a6d1f78063 (diff) | |
zebra: Fix printf formatting
Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
Diffstat (limited to 'zebra/interface.c')
| -rw-r--r-- | zebra/interface.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/zebra/interface.c b/zebra/interface.c index adcc78095b..1d015e8588 100644 --- a/zebra/interface.c +++ b/zebra/interface.c @@ -1056,7 +1056,7 @@ if_dump_vty (struct vty *vty, struct interface *ifp) return; } - vty_out (vty, " index %d metric %d mtu %d speed %d ", + vty_out (vty, " index %d metric %d mtu %d speed %u ", ifp->ifindex, ifp->metric, ifp->mtu, ifp->speed); if (ifp->mtu6 != ifp->mtu) vty_out (vty, "mtu6 %d ", ifp->mtu6); |
