Skip to content

Commit f03e2f5

Browse files
committed
orte/util/nidmap.c: fix uninitialized variable
Squash compiler warning. Signed-off-by: William Bailey <[email protected]>
1 parent ff48070 commit f03e2f5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

orte/util/nidmap.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1123,7 +1123,7 @@ int orte_util_decode_ppn(orte_job_t *jdata,
11231123
{
11241124
orte_std_cntr_t index;
11251125
orte_app_idx_t n;
1126-
int cnt, rc, m;
1126+
int cnt, rc=0, m;
11271127
opal_byte_object_t *boptr;
11281128
bool compressed;
11291129
uint8_t *bytes;

0 commit comments

Comments
 (0)