Skip to content

Commit f8183f7

Browse files
committed
rmaps/base: swat compiler warning
gcc was complaining about variables possibly used uninitialized Signed-off-by: Howard Pritchard <[email protected]>
1 parent 1a95633 commit f8183f7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

orte/mca/rmaps/base/rmaps_base_map_job.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,8 @@
4545
int orte_rmaps_base_map_job(orte_job_t *jdata)
4646
{
4747
orte_node_t *node;
48-
int rc, i, ppx;
49-
bool did_map, given, pernode;
48+
int rc, i, ppx = 0;
49+
bool did_map, given, pernode = false;
5050
orte_rmaps_base_selected_module_t *mod;
5151
orte_job_t *parent;
5252
orte_vpid_t nprocs;

0 commit comments

Comments
 (0)