summaryrefslogtreecommitdiffstats
path: root/src/H5Idbg.c
diff options
context:
space:
mode:
authorDana Robinson <43805+derobins@users.noreply.github.com>2021-06-18 13:41:43 (GMT)
committerGitHub <noreply@github.com>2021-06-18 13:41:43 (GMT)
commit0ea7d164342e76ffe1e06e957d28a7133e48a08c (patch)
tree26157139ba3222e0d9331fabfcf971b730948c6e /src/H5Idbg.c
parent2ade6f1f0568d1b9179766e77bad563c07a1d127 (diff)
downloadhdf5-0ea7d164342e76ffe1e06e957d28a7133e48a08c.zip
hdf5-0ea7d164342e76ffe1e06e957d28a7133e48a08c.tar.gz
hdf5-0ea7d164342e76ffe1e06e957d28a7133e48a08c.tar.bz2
Minor H5I fixes and tweaks (#770)
Diffstat (limited to 'src/H5Idbg.c')
-rw-r--r--src/H5Idbg.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Idbg.c b/src/H5Idbg.c
index 71937e8..cf114d4 100644
--- a/src/H5Idbg.c
+++ b/src/H5Idbg.c
@@ -111,7 +111,7 @@ H5I__id_dump_cb(void *_item, void H5_ATTR_UNUSED *_key, void *_udata)
const H5T_t *dt = (const H5T_t *)info->object;
H5_GCC_DIAG_OFF("cast-qual")
- object = (void *)H5T_get_actual_type((H5T_t *)dt); /* Casting away const OK - QAK */
+ object = (void *)H5T_get_actual_type((H5T_t *)dt);
H5_GCC_DIAG_ON("cast-qual")
path = H5T_nameof((const H5T_t *)object);