Skip to content

Commit 09f73f1

Browse files
authored
Merge pull request #5194 from edgargabriel/pr/condition-fix
io/ompio: fix an erroneous condition when selecting aggregator selection algorithm
2 parents 36cde21 + 6b03cee commit 09f73f1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ompi/mca/common/ompio/common_ompio_file_view.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ int mca_common_ompio_set_view (mca_io_ompio_file_t *fh,
172172
}
173173
}
174174

175-
if ( SIMPLE != mca_io_ompio_grouping_option || SIMPLE_PLUS != mca_io_ompio_grouping_option ) {
175+
if ( SIMPLE != mca_io_ompio_grouping_option && SIMPLE_PLUS != mca_io_ompio_grouping_option ) {
176176

177177
ret = mca_io_ompio_fview_based_grouping(fh,
178178
&num_groups,

0 commit comments

Comments
 (0)