aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authortradke <tradke@7842ec3a-9562-4be5-9c5b-06ba18f2b668>2004-01-22 13:31:14 +0000
committertradke <tradke@7842ec3a-9562-4be5-9c5b-06ba18f2b668>2004-01-22 13:31:14 +0000
commit8324407bddd5fc1a2bfc5bf53a09000511904c01 (patch)
treefa9760780f36cb191013f459c17f50a261b8dd81 /src
parent996d4033c3eb0f7375f9845d9d24ab86b5315ebc (diff)
Renamed some aliased hyperslab functions to comply with the maximum length
for names of Fortran routines (31 characters): Hyperslab_DefineGlobalMappingByPhys -> Hyperslab_GlobalMappingByPhys Hyperslab_DefineGlobalMappingByIndex -> Hyperslab_GlobalMappingByIndex Hyperslab_DefineLocalMappingByPhys -> Hyperslab_LocalMappingByPhys Hyperslab_DefineLocalMappingByIndex -> Hyperslab_LocalMappingByIndex Also renamed the providing functions accordingly. git-svn-id: http://svn.cactuscode.org/arrangements/CactusPUGHIO/IOHDF5Util/trunk@105 7842ec3a-9562-4be5-9c5b-06ba18f2b668
Diffstat (limited to 'src')
-rw-r--r--src/DumpVar.c22
1 files changed, 11 insertions, 11 deletions
diff --git a/src/DumpVar.c b/src/DumpVar.c
index 56a50ef..f06bcb5 100644
--- a/src/DumpVar.c
+++ b/src/DumpVar.c
@@ -268,7 +268,7 @@ static int WriteGS (const cGH *GH, const ioRequest *request, const char *name,
Writes a grid array into a HDF5 file.
@enddesc
- @calls Hyperslab_DefineLocalMappingByIndex
+ @calls Hyperslab_LocalMappingByIndex
Hyperslab_FreeMapping
Hyperslab_Get
WriteData
@@ -330,16 +330,16 @@ static int WriteGA (const cGH *GH, const ioRequest *request, const char *name,
}
}
- mapping = Hyperslab_DefineLocalMappingByIndex (GH, request->vindex,
- request->hdim,
- request->direction,
- request->origin,
- request->extent,
- request->downsample,
- table, NULL,
- request->hsize_chunk,
- request->hsize,
- request->hoffset);
+ mapping = Hyperslab_LocalMappingByIndex (GH, request->vindex,
+ request->hdim,
+ request->direction,
+ request->origin,
+ request->extent,
+ request->downsample,
+ table, NULL,
+ request->hsize_chunk,
+ request->hsize,
+ request->hoffset);
if (table >= 0)
{
Util_TableDestroy (table);