examples/vhost_crypto: remove unused short option

Short option "s" was passed to getopt_long function, while there was
no condition on this option.

Fixes: f5188211c7 ("examples/vhost_crypto: add sample application")
Cc: stable@dpdk.org

Signed-off-by: Ibtisam Tariq <ibtisam.tariq@emumba.com>
Acked-by: Fan Zhang <roy.fan.zhang@intel.com>
Reviewed-by: Maxime Coquelin <maxime.coquelin@redhat.com>
This commit is contained in:
Ibtisam Tariq 2021-02-04 08:05:42 +00:00 committed by Chenbo Xia
parent af584d21bf
commit dd0946f975

View File

@ -229,7 +229,7 @@ vhost_crypto_parse_args(int argc, char **argv)
argvopt = argv;
while ((opt = getopt_long(argc, argvopt, "s:",
while ((opt = getopt_long(argc, argvopt, "",
lgopts, &option_index)) != EOF) {
if (opt == '?') {