Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
Got boolean check backwards.

Signed-off-by: Ralph Castain <[email protected]>
(cherry picked from commit 7b47040)
  • Loading branch information
rhc54 committed Jul 29, 2021
1 parent 79d80ea commit 16ea899
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/util/dash_host/dash_host.c
Original file line number Diff line number Diff line change
Expand Up @@ -392,7 +392,7 @@ int prte_util_add_dash_host_nodes(prte_list_t *nodes, char *hosts, bool allocati
break;
}
}
if (!needcheck) {
if (needcheck) {
// node in -host was not in allocation - this is not allowed
prte_show_help("help-dash-host.txt", "not-all-mapped-alloc",
true, node->name);
Expand Down

0 comments on commit 16ea899

Please sign in to comment.