summaryrefslogtreecommitdiffstats
path: root/tools/lib/h5tools_ref.c
diff options
context:
space:
mode:
authorDana Robinson <derobins@hdfgroup.org>2014-10-31 18:11:42 (GMT)
committerDana Robinson <derobins@hdfgroup.org>2014-10-31 18:11:42 (GMT)
commit81f7e6b1d3d1e1b4ef70c520e8296645b63923ba (patch)
tree2e02c30109f8ded232d917c5db7260eb4cd4e934 /tools/lib/h5tools_ref.c
parent6735f59f7d65a3d2d1821c5217fb3f9612cfed49 (diff)
downloadhdf5-81f7e6b1d3d1e1b4ef70c520e8296645b63923ba.zip
hdf5-81f7e6b1d3d1e1b4ef70c520e8296645b63923ba.tar.gz
hdf5-81f7e6b1d3d1e1b4ef70c520e8296645b63923ba.tar.bz2
[svn-r25755] Removed spurious casts in a few HDfree() statements.
Discovered when I temporarily #defined HDfree() to a more complicated function while investigating something. Tested on a local linux VM. This is a very minor change.
Diffstat (limited to 'tools/lib/h5tools_ref.c')
-rw-r--r--tools/lib/h5tools_ref.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/lib/h5tools_ref.c b/tools/lib/h5tools_ref.c
index caf71df..52d84f9 100644
--- a/tools/lib/h5tools_ref.c
+++ b/tools/lib/h5tools_ref.c
@@ -65,7 +65,7 @@ free_ref_path_info(void *item, void UNUSED *key, void UNUSED *operator_data/*in,
{
ref_path_node_t *node = (ref_path_node_t *)item;
- HDfree((void *)node->path);
+ HDfree(node->path);
HDfree(node);
return(0);