diff options
author | Albert Cheng <acheng@hdfgroup.org> | 1998-03-06 03:52:40 (GMT) |
---|---|---|
committer | Albert Cheng <acheng@hdfgroup.org> | 1998-03-06 03:52:40 (GMT) |
commit | 44da2314b56b3651221a15b4338d156a6d3b9222 (patch) | |
tree | c0a8f830f4a0182ee206fe661b86c24ef93ed705 /src/H5F.c | |
parent | 01cb507f8967fa6ac998d7378e5b08c375923b35 (diff) | |
download | hdf5-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.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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", |