ripngd: fix clang warning

this value len is not used for this vty_out() case.

Signed-off-by: Vincent Jardin <vincent.jardin@6wind.com>
This commit is contained in:
Vincent JARDIN 2017-10-08 23:40:36 +02:00
parent f38b7f6dd3
commit 51f7fe8459

View File

@ -2010,7 +2010,7 @@ DEFUN (show_ipv6_ripng,
len = 28 - len;
if (len > 0)
len = vty_out(vty, "%*s", len, " ");
vty_out(vty, "%*s", len, " ");
/* from */
if ((rinfo->type == ZEBRA_ROUTE_RIPNG)