diff options
| author | Russ White <russ@riw.us> | 2017-07-14 08:00:43 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-07-14 08:00:43 -0400 |
| commit | 28bd1c1158c10268655878d12e5d8f17737de1bb (patch) | |
| tree | 576ef3527922cd2a0fec59fadf1cff947e8f2079 /tests/lib/cli/common_cli.c | |
| parent | eef83e96f7141c8b016462195e01b824c600c89e (diff) | |
| parent | 28b672fcd33f328964c91f0a3d06cd904bddad42 (diff) | |
Merge pull request #813 from opensourcerouting/newline-redux
newline redux
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; |
