diff options
| author | David Lamparter <equinox@opensourcerouting.org> | 2017-07-14 17:30:56 +0200 |
|---|---|---|
| committer | David Lamparter <equinox@opensourcerouting.org> | 2017-07-14 17:30:56 +0200 |
| commit | 22106bbf6870c19db1a06f3182b894c852686eae (patch) | |
| tree | 9b2c8861988a80aa42d3095b804190e38d409903 /tests/lib/cli/common_cli.c | |
| parent | 98f65ee0b1a147b2852bf22f6d2c08d8563c124e (diff) | |
| parent | 888efdbb5ec4e895f44f0307348a02fd6c61b579 (diff) | |
Merge remote-tracking branch 'frr/master' into table-hash-ospf6-lsdb-refactor
Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
Diffstat (limited to 'tests/lib/cli/common_cli.c')
| -rw-r--r-- | tests/lib/cli/common_cli.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/lib/cli/common_cli.c b/tests/lib/cli/common_cli.c index 728ae8cb04..f1b07ce228 100644 --- a/tests/lib/cli/common_cli.c +++ b/tests/lib/cli/common_cli.c @@ -36,10 +36,10 @@ int dump_args(struct vty *vty, const char *descr, int argc, struct cmd_token *argv[]) { int i; - vty_outln (vty, "%s with %d args.", descr, argc); + vty_out (vty, "%s with %d args.\n", descr, argc); for (i = 0; i < argc; i++) { - vty_outln (vty, "[%02d] %s@%s: %s", i, argv[i]->text, argv[i]->varname, argv[i]->arg); + vty_out (vty, "[%02d] %s@%s: %s\n", i, argv[i]->text, argv[i]->varname, argv[i]->arg); } return CMD_SUCCESS; |
