summaryrefslogtreecommitdiffstats
path: root/src/H5F.c
diff options
context:
space:
mode:
authorAlbert Cheng <acheng@hdfgroup.org>1998-03-06 03:52:40 (GMT)
committerAlbert Cheng <acheng@hdfgroup.org>1998-03-06 03:52:40 (GMT)
commit44da2314b56b3651221a15b4338d156a6d3b9222 (patch)
treec0a8f830f4a0182ee206fe661b86c24ef93ed705 /src/H5F.c
parent01cb507f8967fa6ac998d7378e5b08c375923b35 (diff)
downloadhdf5-44da2314b56b3651221a15b4338d156a6d3b9222.zip
hdf5-44da2314b56b3651221a15b4338d156a6d3b9222.tar.gz
hdf5-44da2314b56b3651221a15b4338d156a6d3b9222.tar.bz2
[svn-r310] Fixed a type of H5F_LOW_MPIO. Chose _MPIO over _MPI since that
is more consistent with other names like STDIO.
Diffstat (limited to 'src/H5F.c')
-rw-r--r--src/H5F.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/H5F.c b/src/H5F.c
index ab536b0..71827aa 100644
--- a/src/H5F.c
+++ b/src/H5F.c
@@ -149,7 +149,7 @@ H5F_init_interface(void)
/* Nothing to initialize */
#elif (H5F_LOW_DFLT == H5F_LOW_CORE)
H5F_access_dflt.u.core.increment = 10*1024;
-#elif (H5F_LOW_DFLT == H5F_LOW_MPI)
+#elif (H5F_LOW_DFLT == H5F_LOW_MPIO)
H5F_access_dflt.u.mpio.access_mode = 0;
H5F_access_dflt.u.mpio.comm = MPI_COMM_NULL;
H5F_access_dflt.u.mpio.info = MPI_INFO_NULL;
@@ -1327,7 +1327,7 @@ H5F_close(H5F_t *f)
*/
if (f->nopen > 0) {
#ifndef NDEBUG
- fprintf(stderr, "HDF5-DIAG: H5F_close: %d object header%s still "
+ fprintf(stderr, "HDF5-DIAG: H5F_close: %u object header%s still "
"open (file close will complete when %s closed)\n",
f->nopen,
1 == f->nopen ? " is" : "s are",