aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortradke <tradke@10716dce-81a3-4424-a2c8-48026a0d3035>2001-06-27 18:31:11 +0000
committertradke <tradke@10716dce-81a3-4424-a2c8-48026a0d3035>2001-06-27 18:31:11 +0000
commit4850c0d73c5f2de98d7122c405160b9d9cb2393d (patch)
tree3d3907ab8a3b9bcd899ae16c2cb6cb31f2b32790
parent28da073c156187bd544660b0fb6bb68de8d236c3 (diff)
Fixed function argument list for PUGH_MPIDataType().
git-svn-id: http://svn.cactuscode.org/arrangements/CactusPUGH/PUGHSlab/trunk@59 10716dce-81a3-4424-a2c8-48026a0d3035
-rw-r--r--src/Hyperslab.c2
-rw-r--r--src/NewHyperslab.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/Hyperslab.c b/src/Hyperslab.c
index 919e384..f793592 100644
--- a/src/Hyperslab.c
+++ b/src/Hyperslab.c
@@ -877,7 +877,7 @@ int Hyperslab_GetHyperslab (cGH *GH, int target_proc, int vindex, int vtimelvl,
}
/* detect the MPI datatype to use */
- mpi_vtype = PUGH_MPIDataType (vinfo.vartype);;
+ mpi_vtype = PUGH_MPIDataType (PUGH_pGH (GH), vinfo.vartype);
/* collect the hyperslab chunks from all processors */
if (target_proc < 0)
diff --git a/src/NewHyperslab.c b/src/NewHyperslab.c
index b0aa21b..a03186b 100644
--- a/src/NewHyperslab.c
+++ b/src/NewHyperslab.c
@@ -956,7 +956,7 @@ int NewHyperslab_GetHyperslab (cGH *GH,
}
/* detect the MPI datatype to use */
- mpi_vtype = PUGH_MPIDataType (htype);
+ mpi_vtype = PUGH_MPIDataType (PUGH_pGH (GH), htype);
/* collect the hyperslab chunks from all processors */
if (target_proc < 0)