diff options
author | Elena Pourmal <epourmal@hdfgroup.org> | 2003-10-13 22:29:11 (GMT) |
---|---|---|
committer | Elena Pourmal <epourmal@hdfgroup.org> | 2003-10-13 22:29:11 (GMT) |
commit | a34ed1f634081df2e6b8e7295eac73d3e31e7346 (patch) | |
tree | 526afac060bfd63a60472da46ed6a9a2678f8517 /doc | |
parent | bf8a376ee3f40ae4eeec329227db5f499070dbc7 (diff) | |
download | hdf5-a34ed1f634081df2e6b8e7295eac73d3e31e7346.zip hdf5-a34ed1f634081df2e6b8e7295eac73d3e31e7346.tar.gz hdf5-a34ed1f634081df2e6b8e7295eac73d3e31e7346.tar.bz2 |
[svn-r7623]
Purpose: Bug fix
Description: The third parameter to the h5pget(set)_cache_f subroutines
had a wrong type
Solution: Fixed the type and changed the docs.
Platforms tested: kelgia, arabica 64-bit, copper 64-bit
Misc. update:
Diffstat (limited to 'doc')
-rw-r--r-- | doc/html/fortran/h5p_FORTRAN.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/html/fortran/h5p_FORTRAN.html b/doc/html/fortran/h5p_FORTRAN.html index 601f320..5a4a52d 100644 --- a/doc/html/fortran/h5p_FORTRAN.html +++ b/doc/html/fortran/h5p_FORTRAN.html @@ -797,7 +797,7 @@ FORTRAN Property List API -- h5p INTEGER(HID_T), INTENT(IN) :: prp_id ! Property list identifier INTEGER, INTENT(IN) :: mdc_nelmts ! Number of elements (objects) ! in the meta data cache - INTEGER, INTENT(IN) :: rdcc_nelmts ! Number of elements (objects) + INTEGER(SIZE_T), INTENT(IN) :: rdcc_nelmts ! Number of elements (objects) ! in the meta data cache INTEGER(SIZE_T), INTENT(IN) :: rdcc_nbytes ! Total size of the raw data ! chunk cache, in bytes @@ -826,7 +826,7 @@ FORTRAN Property List API -- h5p INTEGER(HID_T), INTENT(IN) :: prp_id ! Property list identifier INTEGER, INTENT(OUT) :: mdc_nelmts ! Number of elements (objects) ! in the meta data cache - INTEGER, INTENT(OUT) :: rdcc_nelmts ! Number of elements (objects) + INTEGER(SIZE_T), INTENT(OUT) :: rdcc_nelmts ! Number of elements (objects) ! in the meta data cache INTEGER(SIZE_T), INTENT(OUT) :: rdcc_nbytes ! Total size of the raw data ! chunk cache, in bytes |