From b56a64515ea5610ca0b37341b2981a196ea9a485 Mon Sep 17 00:00:00 2001 From: Tim Woodall Date: Mon, 15 Mar 2004 18:08:05 +0000 Subject: [PATCH] fixed bug checking index This commit was SVN r850. --- src/mpi/group/mpi_group_init.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mpi/group/mpi_group_init.c b/src/mpi/group/mpi_group_init.c index 209eace995..b174793e1e 100644 --- a/src/mpi/group/mpi_group_init.c +++ b/src/mpi/group/mpi_group_init.c @@ -149,7 +149,7 @@ int lam_group_init(void) return LAM_ERROR; }; /* make sure that MPI_GROUP_NULL is in location in the table */ - if( LAM_GROUP_EMPTY_FORTRAN == ret_val ){ + if( LAM_GROUP_EMPTY_FORTRAN != ret_val ){ return LAM_ERROR; }; lam_mpi_group_empty.grp_f_to_c_index=ret_val;