From: Cristian Dumitrescu Date: Tue, 30 Mar 2021 10:19:04 +0000 (+0100) Subject: pipeline: adjust error code for internal function X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=e8e22eb0ddb6736745ad80e337848860107c4aee;p=dpdk.git pipeline: adjust error code for internal function Adjusting the error code for the internal function instruction_config to match the rest of the code which is returning a negative value on error. Cosmetic change. Signed-off-by: Cristian Dumitrescu --- diff --git a/lib/librte_pipeline/rte_swx_pipeline.c b/lib/librte_pipeline/rte_swx_pipeline.c index 52987870de..2956dde77f 100644 --- a/lib/librte_pipeline/rte_swx_pipeline.c +++ b/lib/librte_pipeline/rte_swx_pipeline.c @@ -8059,20 +8059,20 @@ instruction_config(struct rte_swx_pipeline *p, /* Memory allocation. */ instr = calloc(n_instructions, sizeof(struct instruction)); if (!instr) { - err = ENOMEM; + err = -ENOMEM; goto error; } data = calloc(n_instructions, sizeof(struct instruction_data)); if (!data) { - err = ENOMEM; + err = -ENOMEM; goto error; } for (i = 0; i < n_instructions; i++) { char *string = strdup(instructions[i]); if (!string) { - err = ENOMEM; + err = -ENOMEM; goto error; }