diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 1999-07-23 23:36:21 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 1999-07-23 23:36:21 (GMT) |
commit | b9f1ca7df7bd03494016a9dcfc1b7240cbb6bfb1 (patch) | |
tree | 79a14f444fb2bb61e8ceaef9e9a4f6fe78b9b0fe /src/H5D.c | |
parent | 3dd6511206758955db7f41b80c41f9478208e87f (diff) | |
download | hdf5-b9f1ca7df7bd03494016a9dcfc1b7240cbb6bfb1.zip hdf5-b9f1ca7df7bd03494016a9dcfc1b7240cbb6bfb1.tar.gz hdf5-b9f1ca7df7bd03494016a9dcfc1b7240cbb6bfb1.tar.bz2 |
[svn-r1544] Added some casts to pacify the T3E compiler.
Diffstat (limited to 'src/H5D.c')
-rw-r--r-- | src/H5D.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2719,7 +2719,7 @@ H5Dvlen_reclaim(hid_t type_id, hid_t space_id, hid_t plist_id, void *buf) } /* Call H5Diterate with args, etc. */ - ret_value=H5Diterate(buf,type_id,space_id,H5T_vlen_reclaim,xfer_parms); + ret_value=H5Diterate(buf,type_id,space_id,H5T_vlen_reclaim,(void *)xfer_parms); FUNC_LEAVE(ret_value); } /* end H5Dvlen_reclaim() */ |