diff options
author | David Lamparter <equinox@opensourcerouting.org> | 2017-07-14 13:09:47 +0200 |
---|---|---|
committer | David Lamparter <equinox@opensourcerouting.org> | 2017-07-14 13:09:47 +0200 |
commit | 50790e72fb676f6f5d6a775552770aba8b2e59cc (patch) | |
tree | c5733d66adb0024211912d23c61a1ab43a387724 /lib/hash.c | |
parent | Merge remote-tracking branch 'frr/master' into newline-redux (diff) | |
download | frr-50790e72fb676f6f5d6a775552770aba8b2e59cc.tar.xz frr-50790e72fb676f6f5d6a775552770aba8b2e59cc.zip |
*: remove vty_outln again
(PRs merged to master added another few vty_outln() calls)
Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
Diffstat (limited to '')
-rw-r--r-- | lib/hash.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/hash.c b/lib/hash.c index 47f336c1e..7c355b2d8 100644 --- a/lib/hash.c +++ b/lib/hash.c @@ -426,7 +426,7 @@ DEFUN(show_hash_stats, if (!_hashes) { pthread_mutex_unlock (&_hashes_mtx); - vty_outln (vty, "No hash tables in use."); + vty_out (vty, "No hash tables in use.\n"); return CMD_SUCCESS; } |