From b1d1799f478bc70bbe13e2e66d0a490b5fd8456c Mon Sep 17 00:00:00 2001 From: mquinson Date: Mon, 17 Aug 2009 10:15:29 +0000 Subject: [PATCH] SMPI: Fix the prototype of SMPI_MPI_Type_get_extent (use MPI_Aint instead of int since types differ on 64bits) git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@6565 48e7efb5-ca39-0410-a469-dd3cf9ba447f --- src/smpi/smpi_mpi_dt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/smpi/smpi_mpi_dt.c b/src/smpi/smpi_mpi_dt.c index 783bb86a4f..8e74105fef 100644 --- a/src/smpi/smpi_mpi_dt.c +++ b/src/smpi/smpi_mpi_dt.c @@ -52,7 +52,7 @@ int smpi_mpi_type_get_extent(MPI_Datatype datatype, MPI_Aint *lb, MPI_Aint *exte /** * query extent and lower bound of the type **/ -int SMPI_MPI_Type_get_extent( MPI_Datatype datatype, int *lb, int *extent) +int SMPI_MPI_Type_get_extent( MPI_Datatype datatype, MPI_Aint *lb, MPI_Aint *extent) { return( smpi_mpi_type_get_extent( datatype, lb, extent)); } -- 2.20.1