diff options
Diffstat (limited to 'vlib')
-rw-r--r-- | vlib/vlib/threads_cli.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/vlib/vlib/threads_cli.c b/vlib/vlib/threads_cli.c index aef67576751..6651a4dd671 100644 --- a/vlib/vlib/threads_cli.c +++ b/vlib/vlib/threads_cli.c @@ -444,9 +444,9 @@ test_frame_queue_nelts (vlib_main_t * vm, unformat_input_t * input, while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT) { - if (unformat (line_input, "nelts %u"), &nelts) + if (unformat (line_input, "nelts %u", &nelts)) ; - else if (unformat (line_input, "index %u"), &index) + else if (unformat (line_input, "index %u", &index)) ; else return clib_error_return (0, "parse error: '%U'", @@ -511,9 +511,9 @@ test_frame_queue_threshold (vlib_main_t * vm, unformat_input_t * input, while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT) { - if (unformat (line_input, "threshold %u"), &threshold) + if (unformat (line_input, "threshold %u", &threshold)) ; - else if (unformat (line_input, "index %u"), &index) + else if (unformat (line_input, "index %u", &index)) ; else return clib_error_return (0, "parse error: '%U'", |