summaryrefslogtreecommitdiffstats
path: root/ripngd
diff options
context:
space:
mode:
authorVincent JARDIN <vincent.jardin@6wind.com>2017-10-08 23:40:36 +0200
committerVincent JARDIN <vincent.jardin@6wind.com>2017-10-08 23:40:36 +0200
commit51f7fe8459c7f7c1a10a3d045858cb6ee8f34f88 (patch)
tree87149aa81a93bcbcaf14f8bb9013156cf66f160b /ripngd
parentospfd: fix clang warning (diff)
downloadfrr-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.c2
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)