diff options
| author | Jafar Al-Gharaibeh <Jafaral@users.noreply.github.com> | 2017-06-30 13:07:23 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-06-30 13:07:23 -0500 |
| commit | 8186327f3d2a5028b55eab9a04c31b5ccd68afd1 (patch) | |
| tree | e743501662fccc01c44b0f2f9cbc20dd1794f36e /lib/thread.c | |
| parent | 5fca4e3635c2778e8349bce0eaf944c26913d321 (diff) | |
| parent | fe232cf8197963decb8b68e4a62de3734a7d5cde (diff) | |
Merge pull request #771 from qlyoung/printf-madness
lib: printf bugfixes & improvement
Diffstat (limited to 'lib/thread.c')
| -rw-r--r-- | lib/thread.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/thread.c b/lib/thread.c index 801168a799..71b0bb2aed 100644 --- a/lib/thread.c +++ b/lib/thread.c @@ -271,7 +271,7 @@ DEFUN (show_thread_cpu, filter = parse_filter (argv[idx]->arg); if (!filter) { vty_outln(vty, "Invalid filter \"%s\" specified; must contain at least" - "one of 'RWTEXB'%s", argv[idx]->arg); + "one of 'RWTEXB'", argv[idx]->arg); return CMD_WARNING; } } @@ -295,7 +295,7 @@ DEFUN (clear_thread_cpu, filter = parse_filter (argv[idx]->arg); if (!filter) { vty_outln(vty, "Invalid filter \"%s\" specified; must contain at least" - "one of 'RWTEXB'%s", argv[idx]->arg); + "one of 'RWTEXB'", argv[idx]->arg); return CMD_WARNING; } } |
