diff options
author | Elena Pourmal <epourmal@hdfgroup.org> | 2005-09-13 03:21:00 (GMT) |
---|---|---|
committer | Elena Pourmal <epourmal@hdfgroup.org> | 2005-09-13 03:21:00 (GMT) |
commit | 946f03bd2c4fd8208e3c22d5da3c9a279f46f413 (patch) | |
tree | 65b93d158112b597f5c3c65ea38fe39b56a9df4a /tools/lib | |
parent | 8d2783a2e099dc596dd9e798507e4cf69ce3b09e (diff) | |
download | hdf5-946f03bd2c4fd8208e3c22d5da3c9a279f46f413.zip hdf5-946f03bd2c4fd8208e3c22d5da3c9a279f46f413.tar.gz hdf5-946f03bd2c4fd8208e3c22d5da3c9a279f46f413.tar.bz2 |
[svn-r11404] Purpose: Maintenance
Description: Brought back changes from SX-6.
Solution: Program will not compile. Fixed.
Platforms tested: SX-6, heping and mir with new g95
Misc. update:
Diffstat (limited to 'tools/lib')
-rw-r--r-- | tools/lib/h5tools_ref.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/lib/h5tools_ref.c b/tools/lib/h5tools_ref.c index 82dd1d0..c93d2e5 100644 --- a/tools/lib/h5tools_ref.c +++ b/tools/lib/h5tools_ref.c @@ -108,7 +108,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(node->path); + HDfree((void *)node->path); HDfree(node); return(0); |