summaryrefslogtreecommitdiffstats
path: root/fortran
diff options
context:
space:
mode:
authorElena Pourmal <epourmal@hdfgroup.org>2000-12-02 17:21:43 (GMT)
committerElena Pourmal <epourmal@hdfgroup.org>2000-12-02 17:21:43 (GMT)
commitf99a7ddaccaa1e0b0ee492ed23502d3bfcd5b055 (patch)
treee33782ff5ce9ad7fa1268bacc87716f90b3454ec /fortran
parentc0c9ae025f23f822816398828c3b18d18ecbc8f2 (diff)
downloadhdf5-f99a7ddaccaa1e0b0ee492ed23502d3bfcd5b055.zip
hdf5-f99a7ddaccaa1e0b0ee492ed23502d3bfcd5b055.tar.gz
hdf5-f99a7ddaccaa1e0b0ee492ed23502d3bfcd5b055.tar.bz2
[svn-r3068]
Purpose: Code maintenace Description: Comments to the h5tget_order_f and h5tset_order_f subroutines were incorrect. Solution: Fixed.
Diffstat (limited to 'fortran')
-rw-r--r--fortran/src/H5Tff.f9012
1 files changed, 6 insertions, 6 deletions
diff --git a/fortran/src/H5Tff.f90 b/fortran/src/H5Tff.f90
index 2b86c57..344bfd8 100644
--- a/fortran/src/H5Tff.f90
+++ b/fortran/src/H5Tff.f90
@@ -115,9 +115,9 @@
INTEGER(HID_T), INTENT(IN) :: type_id ! Datatype identifier
INTEGER, INTENT(OUT) :: order
! Datatype byte order, bossible values are:
- ! H5T_ORDER_LE (0)
- ! H5T_ORDER_BE (1)
- ! H5T_ORDER_VAX (2)
+ ! H5T_ORDER_LE_F
+ ! H5T_ORDER_BE_F
+ ! H5T_ORDER_VAX_F
INTEGER, INTENT(OUT) :: hdferr ! Error code
INTEGER, EXTERNAL :: h5tget_order_c
hdferr = h5tget_order_c(type_id, order)
@@ -129,9 +129,9 @@
INTEGER(HID_T), INTENT(IN) :: type_id ! Datatype identifier
INTEGER, INTENT(IN) :: order ! Datatype byte order, bossible values
! are:
- ! H5T_ORDER_LE (0)
- ! H5T_ORDER_BE (1)
- ! H5T_ORDER_VAX (2)
+ ! H5T_ORDER_LE_F
+ ! H5T_ORDER_BE_F
+ ! H5T_ORDER_VAX_F
INTEGER, INTENT(OUT) :: hdferr ! Error code
INTEGER, EXTERNAL :: h5tset_order_c
hdferr = h5tset_order_c(type_id, order)