summaryrefslogtreecommitdiffstats
path: root/src/H5FSprivate.h
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2009-08-20 02:05:49 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2009-08-20 02:05:49 (GMT)
commit7a91bd45d43beff7d4919ed97b22dddeb6ade423 (patch)
tree2978be6c753ca24683c6350b47b135a71a90ed3a /src/H5FSprivate.h
parent91e6f1e04de956b44c89ebaaeff5d9e91d8355c4 (diff)
downloadhdf5-7a91bd45d43beff7d4919ed97b22dddeb6ade423.zip
hdf5-7a91bd45d43beff7d4919ed97b22dddeb6ade423.tar.gz
hdf5-7a91bd45d43beff7d4919ed97b22dddeb6ade423.tar.bz2
[svn-r17389] Description:
Bring r17388 from trunk to 1.8 branch: Correct error in freespace test which was relying on free space section to be valid after the library had taken ownership of it (and therefore could free it). Also correct some checking for return values of H5FS internal routines Tested on: FreeBSD/32 6.3 (duty) in debug mode (h5committest performed on trunk)
Diffstat (limited to 'src/H5FSprivate.h')
-rw-r--r--src/H5FSprivate.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5FSprivate.h b/src/H5FSprivate.h
index e5763a5..056449d 100644
--- a/src/H5FSprivate.h
+++ b/src/H5FSprivate.h
@@ -184,7 +184,7 @@ H5_DLL herr_t H5FS_close(H5F_t *f, hid_t dxpl_id, H5FS_t *fspace);
/* Free space section routines */
H5_DLL herr_t H5FS_sect_add(H5F_t *f, hid_t dxpl_id, H5FS_t *fspace,
H5FS_section_info_t *node, unsigned flags, void *op_data);
-H5_DLL herr_t H5FS_sect_try_extend(H5F_t *f, hid_t dxpl_id, H5FS_t *fspace,
+H5_DLL htri_t H5FS_sect_try_extend(H5F_t *f, hid_t dxpl_id, H5FS_t *fspace,
haddr_t addr, hsize_t size, hsize_t extra_requested);
H5_DLL herr_t H5FS_sect_remove(H5F_t *f, hid_t dxpl_id, H5FS_t *fspace,
H5FS_section_info_t *node);