From 985b219c6c33b8a6bc4ef09f9455349dc89a046c Mon Sep 17 00:00:00 2001 From: Jeff Squyres Date: Tue, 7 Sep 2004 20:07:31 +0000 Subject: [PATCH] Fix typo (sorry folks, this'll cause a lot of recompiling... :-\ ) This commit was SVN r2526. --- src/mpi/c/bindings.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mpi/c/bindings.h b/src/mpi/c/bindings.h index 483579a8e6..acda998d94 100644 --- a/src/mpi/c/bindings.h +++ b/src/mpi/c/bindings.h @@ -36,7 +36,7 @@ do { \ if( NULL == (DDT) || MPI_DATATYPE_NULL == (DDT) ) (RC) = MPI_ERR_TYPE; \ else if( (COUNT) < 0 ) (RC) = MPI_ERR_COUNT; \ else if( !ompi_ddt_is_committed((DDT)) ) (RC) = MPI_ERR_TYPE; \ - else if( ompi_ddt_is_overerlapped((DDT)) ) (RC) = MPI_ERR_TYPE; \ + else if( ompi_ddt_is_overlapped((DDT)) ) (RC) = MPI_ERR_TYPE; \ } while (0) #define OMPI_CHECK_DATATYPE_FOR_ONE_SIDED( RC, DDT, COUNT ) \