From: Gowrishankar Muthukrishnan Date: Tue, 4 Oct 2016 10:43:17 +0000 (+0530) Subject: examples/ip_pipeline: fix plugin loading X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=33aa4f077d7d04ecc00ddcc0ed2de998cb1eb242;p=dpdk.git examples/ip_pipeline: fix plugin loading There is typo in init.c of ip_pipeline example due to which, invalid file path is added to -d option of EAL i.e path starting with =. Signed-off-by: Gowrishankar Muthukrishnan Acked-by: Cristian Dumitrescu --- diff --git a/examples/ip_pipeline/init.c b/examples/ip_pipeline/init.c index 0dbc332cda..d580ddf7b3 100644 --- a/examples/ip_pipeline/init.c +++ b/examples/ip_pipeline/init.c @@ -236,7 +236,7 @@ app_init_eal(struct app_params *app) } if (p->add_driver) { - snprintf(buffer, sizeof(buffer), "-d=%s", p->add_driver); + snprintf(buffer, sizeof(buffer), "-d%s", p->add_driver); app->eal_argv[n_args++] = strdup(buffer); }