Skip to content

Commit f19a2b9

Browse files
committed
osc/portals4: Correct an error in an if statement
1 parent 81823d7 commit f19a2b9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ompi/mca/osc/portals4/osc_portals4_component.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ progress_callback(void)
198198
"%s:%d: PtlEQGet reported dropped event",
199199
__FILE__, __LINE__);
200200
goto process;
201-
} else if (PTL_EQ_EMPTY) {
201+
} else if (PTL_EQ_EMPTY == ret) {
202202
return 0;
203203
} else {
204204
opal_output_verbose(1, ompi_osc_base_framework.framework_output,

0 commit comments

Comments
 (0)