From 987acad0a9ec6414e6147e5cdc575e18f4c416e8 Mon Sep 17 00:00:00 2001 From: Ibtisam Tariq Date: Mon, 2 Nov 2020 11:43:03 +0000 Subject: [PATCH] examples/qos_sched: fix usage string [ upstream commit fc48d8a5b296daacd47cacb25db6f9f6ca82ccd0 ] The short option written for interactive mode is --i in usage of this qos_sched example. Actually, it is -i. Fixes: cfd5c971e5e ("examples/qos_sched: add stats") Signed-off-by: Ibtisam Tariq Reviewed-by: David Marchand --- examples/qos_sched/args.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/qos_sched/args.c b/examples/qos_sched/args.c index 7431b29816..2727fd4f27 100644 --- a/examples/qos_sched/args.c +++ b/examples/qos_sched/args.c @@ -39,7 +39,7 @@ static const char usage[] = " multiple pfc can be configured in command line \n" " \n" "Application optional parameters: \n" - " --i : run in interactive mode (default value is %u) \n" + " -i : run in interactive mode (default value is %u) \n" " --mst I : master core index (default value is %u) \n" " --rsz \"A, B, C\" : Ring sizes \n" " A = Size (in number of buffer descriptors) of each of the NIC RX \n"