Skip to content

Commit

Permalink
Merge pull request #5194 from edgargabriel/pr/condition-fix
Browse files Browse the repository at this point in the history
io/ompio: fix an erroneous condition when selecting aggregator selection algorithm
  • Loading branch information
edgargabriel authored May 25, 2018
2 parents 36cde21 + 6b03cee commit 09f73f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ompi/mca/common/ompio/common_ompio_file_view.c
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ int mca_common_ompio_set_view (mca_io_ompio_file_t *fh,
}
}

if ( SIMPLE != mca_io_ompio_grouping_option || SIMPLE_PLUS != mca_io_ompio_grouping_option ) {
if ( SIMPLE != mca_io_ompio_grouping_option && SIMPLE_PLUS != mca_io_ompio_grouping_option ) {

ret = mca_io_ompio_fview_based_grouping(fh,
&num_groups,
Expand Down

0 comments on commit 09f73f1

Please sign in to comment.