diff options
author | Richard Warren <Richard.Warren@hdfgroup.org> | 2019-10-23 18:45:55 (GMT) |
---|---|---|
committer | Richard Warren <Richard.Warren@hdfgroup.org> | 2019-10-23 18:45:55 (GMT) |
commit | ca54c5f06e41c26ff9fff559eb1ce93a11898fc5 (patch) | |
tree | 2974884b75f5717080be8063aca7b40486ddfc3d /src | |
parent | aac69436969dd0806ded06ae67d3d325405174eb (diff) | |
download | hdf5-ca54c5f06e41c26ff9fff559eb1ce93a11898fc5.zip hdf5-ca54c5f06e41c26ff9fff559eb1ce93a11898fc5.tar.gz hdf5-ca54c5f06e41c26ff9fff559eb1ce93a11898fc5.tar.bz2 |
Fixed the H5_set_bigio_count prototype by adding a missing input argument.
Diffstat (limited to 'src')
-rw-r--r-- | src/H5private.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5private.h b/src/H5private.h index a0eb527..0bfc91b 100644 --- a/src/H5private.h +++ b/src/H5private.h @@ -2670,7 +2670,7 @@ H5_DLL herr_t H5_combine_path(const char *path1, const char *path2, char **ful #ifdef H5_HAVE_PARALLEL /* Generic MPI functions */ -H5_DLL hsize_t H5_mpi_set_bigio_count(); +H5_DLL hsize_t H5_mpi_set_bigio_count(hsize_t new_count); H5_DLL hsize_t H5_mpi_get_bigio_count(); H5_DLL herr_t H5_mpi_comm_dup(MPI_Comm comm, MPI_Comm *comm_new); H5_DLL herr_t H5_mpi_info_dup(MPI_Info info, MPI_Info *info_new); |