diff options
author | Vincent JARDIN <vincent.jardin@6wind.com> | 2017-10-08 23:40:36 +0200 |
---|---|---|
committer | Vincent JARDIN <vincent.jardin@6wind.com> | 2017-10-08 23:40:36 +0200 |
commit | 51f7fe8459c7f7c1a10a3d045858cb6ee8f34f88 (patch) | |
tree | 87149aa81a93bcbcaf14f8bb9013156cf66f160b /ripngd | |
parent | ospfd: fix clang warning (diff) | |
download | frr-51f7fe8459c7f7c1a10a3d045858cb6ee8f34f88.tar.xz frr-51f7fe8459c7f7c1a10a3d045858cb6ee8f34f88.zip |
ripngd: fix clang warning
this value len is not used for this vty_out() case.
Signed-off-by: Vincent Jardin <vincent.jardin@6wind.com>
Diffstat (limited to 'ripngd')
-rw-r--r-- | ripngd/ripngd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ripngd/ripngd.c b/ripngd/ripngd.c index 0bee9a8bf..4df1aafe5 100644 --- a/ripngd/ripngd.c +++ b/ripngd/ripngd.c @@ -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) |