[svn-r21777] Description:

Changed, INTENT of flag to be OUT instead of IN for h5dget_space_status_f, the value gets changed so it should have intent(OUT), it
is correct in the documentation.

Tested: jam (gnu, intel, pgi)
This commit is contained in:
Scot Breitenfeld 2011-11-28 23:15:42 -05:00
parent eada074cc8
commit f210c86df3

View File

@ -519,7 +519,7 @@ CONTAINS
SUBROUTINE h5dget_space_status_f(dset_id, flag, hdferr)
IMPLICIT NONE
INTEGER(HID_T), INTENT(IN) :: dset_id ! Dataspace identifier
INTEGER, INTENT(IN) :: flag ! Memory buffer to fill in
INTEGER, INTENT(OUT) :: flag ! Memory buffer to fill in
INTEGER, INTENT(OUT) :: hdferr ! Error code
!*****
INTERFACE