From 2de51fca636eb66d6441e9b06c1570798948fb2f Mon Sep 17 00:00:00 2001 From: Jeff Squyres Date: Mon, 30 Oct 2006 14:15:44 +0000 Subject: [PATCH] Need to return the error code. This commit was SVN r12351. --- ompi/mpi/c/start.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ompi/mpi/c/start.c b/ompi/mpi/c/start.c index 6f17c8e467..14f0970148 100644 --- a/ompi/mpi/c/start.c +++ b/ompi/mpi/c/start.c @@ -56,7 +56,7 @@ int MPI_Start(MPI_Request *request) break; default: - OMPI_ERRHANDLER_INVOKE(MPI_COMM_WORLD, MPI_ERR_REQUEST, FUNC_NAME); + return OMPI_ERRHANDLER_INVOKE(MPI_COMM_WORLD, MPI_ERR_REQUEST, FUNC_NAME); } }