diff options
author | Raymond Lu <songyulu@hdfgroup.org> | 2008-09-26 19:45:43 (GMT) |
---|---|---|
committer | Raymond Lu <songyulu@hdfgroup.org> | 2008-09-26 19:45:43 (GMT) |
commit | 501e01d388a575bf5c0be70013f6d13b2419784d (patch) | |
tree | c9189926ebbf956cc762b40707eff02c204bf273 /fortran/test/tH5F.f90 | |
parent | d711cb1a3bd542359dd429d34d3dcaee335c82b7 (diff) | |
download | hdf5-501e01d388a575bf5c0be70013f6d13b2419784d.zip hdf5-501e01d388a575bf5c0be70013f6d13b2419784d.tar.gz hdf5-501e01d388a575bf5c0be70013f6d13b2419784d.tar.bz2 |
[svn-r15707] I changed the return values of H5Fget_obj_ids and H5Fget_obj_count to ssize_t and modified
C++ and Fortran API functions. This is for bug #1245.
Tested on kagiso - I've tested the same change using h5committest.
Diffstat (limited to 'fortran/test/tH5F.f90')
-rw-r--r-- | fortran/test/tH5F.f90 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fortran/test/tH5F.f90 b/fortran/test/tH5F.f90 index 859d66e..e39d0ee 100644 --- a/fortran/test/tH5F.f90 +++ b/fortran/test/tH5F.f90 @@ -578,7 +578,7 @@ INTEGER(HID_T) :: fapl, fapl1, fapl2, fapl3 ! File access identifiers INTEGER(HID_T) :: fid_d_fapl, fid1_fapl ! File access identifiers LOGICAL :: flag - INTEGER :: obj_count, obj_countf + INTEGER(SIZE_T) :: obj_count, obj_countf INTEGER(HID_T), ALLOCATABLE, DIMENSION(:) :: obj_ids INTEGER :: i |