From f03e2f5e0c77cd2dd06a77d800f9d5520c8c6294 Mon Sep 17 00:00:00 2001 From: William Bailey Date: Mon, 2 Dec 2019 17:29:58 -0500 Subject: [PATCH] orte/util/nidmap.c: fix uninitialized variable Squash compiler warning. Signed-off-by: William Bailey --- orte/util/nidmap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/orte/util/nidmap.c b/orte/util/nidmap.c index ecaa9e7665..3903c9c8d0 100644 --- a/orte/util/nidmap.c +++ b/orte/util/nidmap.c @@ -1123,7 +1123,7 @@ int orte_util_decode_ppn(orte_job_t *jdata, { orte_std_cntr_t index; orte_app_idx_t n; - int cnt, rc, m; + int cnt, rc=0, m; opal_byte_object_t *boptr; bool compressed; uint8_t *bytes;