Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
SMPI: Fix the prototype of SMPI_MPI_Type_get_extent (use MPI_Aint instead of int...
[simgrid.git] / src / smpi / smpi_mpi_dt.c
index 783bb86..8e74105 100644 (file)
@@ -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));
 }