summaryrefslogtreecommitdiffstats
path: root/src/H5SL.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/H5SL.c')
-rw-r--r--src/H5SL.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/H5SL.c b/src/H5SL.c
index 0491aa4..610870f 100644
--- a/src/H5SL.c
+++ b/src/H5SL.c
@@ -466,6 +466,7 @@ H5SL_release_common(H5SL_t *slist, H5SL_operator_t op, void *op_data)
/* Call callback, if one is given */
if(op!=NULL)
+ /* Casting away const OK -QAK */
(void)(op)(node->item,(void *)node->key,op_data);
H5FL_ARR_FREE(H5SL_node_ptr_t,node);