diff options
author | Frank Baker <fbaker@hdfgroup.org> | 2002-05-02 20:23:09 (GMT) |
---|---|---|
committer | Frank Baker <fbaker@hdfgroup.org> | 2002-05-02 20:23:09 (GMT) |
commit | e8f1f956a2c151186a46e8579cf5b9f09125a382 (patch) | |
tree | 27bf4eaf8aeb3030436b2e6031521b167b208d8a /doc/html | |
parent | eec781a0816b288bf29b9f6342cfe342114bd5ee (diff) | |
download | hdf5-e8f1f956a2c151186a46e8579cf5b9f09125a382.zip hdf5-e8f1f956a2c151186a46e8579cf5b9f09125a382.tar.gz hdf5-e8f1f956a2c151186a46e8579cf5b9f09125a382.tar.bz2 |
[svn-r5329]
Purpose:
Bugfix -- Fixes #757.
Description:
h5t{get/set}_size_f
Corrected SIZE parameter datatype to INTEGER(SIZE_T).
Platforms tested:
IE 5
Diffstat (limited to 'doc/html')
-rw-r--r-- | doc/html/fortran/h5t_FORTRAN.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/html/fortran/h5t_FORTRAN.html b/doc/html/fortran/h5t_FORTRAN.html index fa7a7ca..d971e9f 100644 --- a/doc/html/fortran/h5t_FORTRAN.html +++ b/doc/html/fortran/h5t_FORTRAN.html @@ -157,7 +157,7 @@ FORTRAN Datatype API -- h5t SUBROUTINE h5tget_size_f(type_id, size, hdferr) IMPLICIT NONE INTEGER(HID_T), INTENT(IN) :: type_id ! Datatype identifier - INTEGER, INTENT(OUT) :: size ! Datatype size + INTEGER(SIZE_T), INTENT(OUT) :: size ! Datatype size INTEGER, INTENT(OUT) :: hdferr ! Error code ! 0 on success and -1 on failure END SUBROUTINE h5tget_size_f @@ -229,7 +229,7 @@ FORTRAN Datatype API -- h5t SUBROUTINE h5tset_size_f(type_id, size, hdferr) IMPLICIT NONE INTEGER(HID_T), INTENT(IN) :: type_id ! Datatype identifier - INTEGER, INTENT(IN) :: size ! Datatype size + INTEGER(SIZE_T), INTENT(IN) :: size ! Datatype size INTEGER, INTENT(OUT) :: hdferr ! Error code ! 0 on success and -1 on failure END SUBROUTINE h5tset_size_f @@ -1225,7 +1225,7 @@ FORTRAN Datatype API -- h5t <a href="mailto:hdfhelp@ncsa.uiuc.edu">HDF Help Desk</a> </address> -Last modified: 19 February 2001 +Last modified: 18 April 2002 <br> Describes HDF5 Release 1.5, Unreleased Development Branch |