[svn-r4085]

Purpose:
    Typo fix
Description:
    I forgot to add a new argument to one of the functions prototypes.
This commit is contained in:
Elena Pourmal
2001-06-29 10:51:02 -05:00
parent 9154d41f47
commit aca104be97
2 changed files with 3 additions and 3 deletions

View File

@@ -192,7 +192,7 @@ FORTRAN Dataset API -- h5d
IMPLICIT NONE
INTEGER(HID_T), INTENT(IN) :: dset_id ! Dataset identifier
INTEGER(HID_T), INTENT(IN) :: mem_type_id ! Memory datatype identifier
TYPE, INTENT(INOUT) :: buf ! Data buffer; may be scalar or an array
TYPE, INTENT(INOUT) :: buf ! Data buffer; may be a scalar or an array
INTEGER, INTENT(IN) :: dims(7) ! Array to hold corresponding
! dimension sizes of data buffer buf;
! dim(k) has value of the k-th dimension
@@ -264,7 +264,7 @@ FORTRAN Dataset API -- h5d
IMPLICIT NONE
INTEGER(HID_T), INTENT(IN) :: dset_id ! Dataset identifier
INTEGER(HID_T), INTENT(IN) :: mem_type_id ! Memory datatype identifier
TYPE, INTENT(IN) :: buf ! Data buffer; may be scalar or an array
TYPE, INTENT(IN) :: buf ! Data buffer; may be a scalar or an array
INTEGER, INTENT(IN) :: dims(7) ! Array to hold corresponding
! dimension sizes of data buffer buf;
! dim(k) has value of the k-th dimension