summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDana Robinson <43805+derobins@users.noreply.github.com>2022-04-08 14:50:20 (GMT)
committerGitHub <noreply@github.com>2022-04-08 14:50:20 (GMT)
commit95909be9c3491f465b1a61dde5e17381e4179732 (patch)
treece1a4750d92c2ed26f48abdcbf4715dc31a88858
parent41936183d72c71fa2cd0aa1d971ae6510c6b3ef1 (diff)
downloadhdf5-95909be9c3491f465b1a61dde5e17381e4179732.zip
hdf5-95909be9c3491f465b1a61dde5e17381e4179732.tar.gz
hdf5-95909be9c3491f465b1a61dde5e17381e4179732.tar.bz2
Minor things discovered while preparing 1.12.2 (#1620)
-rw-r--r--bin/h5cc.in2
-rwxr-xr-xbin/make_vers2
-rw-r--r--fortran/examples/h5_extend.f902
-rw-r--r--fortran/test/tH5D.F902
-rw-r--r--src/H5public.h4
-rw-r--r--test/cork.c2
6 files changed, 7 insertions, 7 deletions
diff --git a/bin/h5cc.in b/bin/h5cc.in
index 6835b79..966bb40 100644
--- a/bin/h5cc.in
+++ b/bin/h5cc.in
@@ -40,7 +40,7 @@ HL="@HL@"
## $CLINKER $H5BLD_CPPFLAGS $CPPFLAGS $H5BLD_CFLAGS $CFLAGS $LDFLAGS ##
## $LIBS $clibpath $link_objs $link_args $shared_link ##
## ##
-## These settings can be overridden by setting HDF5_CFLAGS, ##
+## These settings can be overridden by setting HDF5_CFLAGS, ##
## HDF5_CPPFLAGS, HDF5_LDFLAGS, or HDF5_LIBS in the environment. ##
## ##
############################################################################
diff --git a/bin/make_vers b/bin/make_vers
index 3631d3c..f1399a4 100755
--- a/bin/make_vers
+++ b/bin/make_vers
@@ -6,7 +6,7 @@ use warnings;
# (The max_idx parameter is the only thing that needs to be changed when adding
# support for a new major release. If support for a prior major release
# is added (like support for 1.4, etc), the min_sup_idx parameter will
-# need to be decremented. - QAK)
+# need to be decremented.)
# Max. library "index" (0 = v1.0, 1 = 1.2, 2 = 1.4, 3 = 1.6, 4 = 1.8, 5 = 1.10, 6 = 1.12, 7 = 1.14, etc)
$max_idx = 7;
diff --git a/fortran/examples/h5_extend.f90 b/fortran/examples/h5_extend.f90
index 193f33e..86cc3c6 100644
--- a/fortran/examples/h5_extend.f90
+++ b/fortran/examples/h5_extend.f90
@@ -110,7 +110,7 @@ PROGRAM H5_EXTEND
CALL h5pset_chunk_f(crp_list, RANK, dimsc, error)
!
- !Create a dataset with 3X3 dimensions using cparms creation properties .
+ !Create a dataset with 3X3 dimensions using cparms creation properties.
!
CALL h5dcreate_f(file_id, dsetname, H5T_NATIVE_INTEGER, dataspace, &
dset_id, error, crp_list )
diff --git a/fortran/test/tH5D.F90 b/fortran/test/tH5D.F90
index eb9e831..5f8484e 100644
--- a/fortran/test/tH5D.F90
+++ b/fortran/test/tH5D.F90
@@ -347,7 +347,7 @@ CONTAINS
CALL check("h5pset_chunk_f",error,total_error)
!
- !Create a dataset with 3X3 dimensions using cparms creation properties .
+ !Create a dataset with 3X3 dimensions using cparms creation properties.
!
CALL h5dcreate_f(file_id, dsetname, H5T_NATIVE_INTEGER, dataspace, dset_id, error, crp_list )
CALL check("h5dcreate_f",error,total_error)
diff --git a/src/H5public.h b/src/H5public.h
index 3f9848a..0be303b 100644
--- a/src/H5public.h
+++ b/src/H5public.h
@@ -586,7 +586,7 @@ H5_DLL herr_t H5set_free_list_limits(int reg_global_lim, int reg_list_lim, int a
* garbage collected with H5garbage_collect(). These lists are global
* for the entire library.
*
- * \since 1.12.1
+ * \since 1.10.7
*/
H5_DLL herr_t H5get_free_list_sizes(size_t *reg_size, size_t *arr_size, size_t *blk_size, size_t *fac_size);
/**
@@ -607,7 +607,7 @@ H5_DLL herr_t H5get_free_list_sizes(size_t *reg_size, size_t *arr_size, size_t *
* entire library, but do not include allocations from chunked dataset
* I/O filters or non-native VOL connectors.
*
- * \since 1.12.1
+ * \since 1.10.7
*/
H5_DLL herr_t H5get_alloc_stats(H5_alloc_stats_t *stats);
/**
diff --git a/test/cork.c b/test/cork.c
index b1f28c1..c22308b 100644
--- a/test/cork.c
+++ b/test/cork.c
@@ -1887,7 +1887,7 @@ test_dset_cork(hbool_t swmr, hbool_t new_format)
{
hid_t fid = H5I_INVALID_HID; /* File ID */
hid_t fapl; /* File access property list */
- hid_t gid = H5I_INVALID_HID; /* Grouped ID */
+ hid_t gid = H5I_INVALID_HID; /* Group ID */
hid_t did1 = H5I_INVALID_HID, did2 = H5I_INVALID_HID; /* Dataset IDs */
hid_t tid1 = H5I_INVALID_HID, tid2 = H5I_INVALID_HID; /* Datatype IDs */
hid_t sid = H5I_INVALID_HID; /* Dataspace ID */