Skip to content

Commit 8bf82fc

Browse files
committed
Do not invoke the errorhandler on MPI_SUCCESS.
Use OMPI_ERRHANDLER_NOHANDLE_RETURN instead of INVOKE. Signed-off-by: George Bosilca <[email protected]>
1 parent e1b66cf commit 8bf82fc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ompi/mpi/c/start.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ int MPI_Start(MPI_Request *request)
8585

8686
ret = (*request)->req_start(1, request);
8787

88-
return OMPI_ERRHANDLER_NOHANDLE_INVOKE(ret, FUNC_NAME);
88+
OMPI_ERRHANDLER_NOHANDLE_RETURN(ret, ret, FUNC_NAME);
8989

9090
case OMPI_REQUEST_NOOP:
9191
/**

0 commit comments

Comments
 (0)