From 0bff0fd2634e284a72ed666b58c088bcae035bc5 Mon Sep 17 00:00:00 2001 From: Fan Zhang Date: Fri, 11 Dec 2015 11:29:08 +0000 Subject: [PATCH] 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 --- examples/ip_pipeline/config_parse.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 ="); -- 2.20.1