From: Fan Zhang Date: Fri, 11 Dec 2015 11:29:08 +0000 (+0000) Subject: examples/ip_pipeline: fix copy-paste error X-Git-Tag: spdx-start~7763 X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=0bff0fd2634e284a72ed666b58c088bcae035bc5;p=dpdk.git examples/ip_pipeline: fix copy-paste error Coverity issue: 107104 Fixes: 7f64b9c004aa ("examples/ip_pipeline: rework config file syntax") Signed-off-by: Fan Zhang Acked-by: Cristian Dumitrescu Acked-by: John McNamara --- diff --git a/examples/ip_pipeline/config_parse.c b/examples/ip_pipeline/config_parse.c index 67e58c9b08..dbeb3a9718 100644 --- a/examples/ip_pipeline/config_parse.c +++ b/examples/ip_pipeline/config_parse.c @@ -2398,7 +2398,7 @@ save_pipeline_params(struct app_params *app, FILE *f) } /* msgq_out */ - if (p->n_msgq_in) { + if (p->n_msgq_out) { uint32_t j; fprintf(f, "msgq_out =");