diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2013-10-04 19:28:22 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2013-10-04 19:28:22 (GMT) |
commit | 5f2a34b462bcbbe73befa3730b6f327f6a5695fe (patch) | |
tree | 1d541004016004a50ea1cc5d147ca5e007ab5746 /hl/src | |
parent | 2060d4f6b906fa2b46ad87578e67f5386ce4cde7 (diff) | |
download | hdf5-5f2a34b462bcbbe73befa3730b6f327f6a5695fe.zip hdf5-5f2a34b462bcbbe73befa3730b6f327f6a5695fe.tar.gz hdf5-5f2a34b462bcbbe73befa3730b6f327f6a5695fe.tar.bz2 |
[svn-r24256] Description:
Clean up warnings
Tested on:
Mac OSX/64 10.8.4 (amazon) w/C++ & FORTRAN
(too minor for h5committest)
Diffstat (limited to 'hl/src')
-rw-r--r-- | hl/src/H5PT.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hl/src/H5PT.c b/hl/src/H5PT.c index ff4347a..92b041a 100644 --- a/hl/src/H5PT.c +++ b/hl/src/H5PT.c @@ -371,7 +371,7 @@ herr_t H5PTclose( hid_t table_id ) htbl_t * table; /* Remove the ID from the library */ - if((table = H5Iremove_verify(table_id, H5PT_ptable_id_type)) ==NULL) + if((table = (htbl_t *)H5Iremove_verify(table_id, H5PT_ptable_id_type)) ==NULL) goto out; /* If the library found the table, remove it */ |