diff options
author | Allen Byrne <byrn@hdfgroup.org> | 2018-01-10 14:31:44 (GMT) |
---|---|---|
committer | Allen Byrne <byrn@hdfgroup.org> | 2018-01-10 14:31:44 (GMT) |
commit | 6bf125c7b38887a26b95d3eac4be08e5e44bb1af (patch) | |
tree | 3bdf9aeef1edb52fd8fe8c000ec2d3ea346310ea /fortran | |
parent | 16e0a6b85868ddc30fffe2c92063f71caa5c71c2 (diff) | |
download | hdf5-6bf125c7b38887a26b95d3eac4be08e5e44bb1af.zip hdf5-6bf125c7b38887a26b95d3eac4be08e5e44bb1af.tar.gz hdf5-6bf125c7b38887a26b95d3eac4be08e5e44bb1af.tar.bz2 |
HDFFV-10385 fix fortran references
Diffstat (limited to 'fortran')
-rw-r--r-- | fortran/examples/h5_crtatt.f90 | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/fortran/examples/h5_crtatt.f90 b/fortran/examples/h5_crtatt.f90 index 7e287c6..d3df380 100644 --- a/fortran/examples/h5_crtatt.f90 +++ b/fortran/examples/h5_crtatt.f90 @@ -84,6 +84,10 @@ PROGRAM H5_CRTATT ! CALL h5aclose_f(attr_id, error) ! + ! Close the attribute datatype. + ! + CALL h5tclose_f(atype_id, error) + ! ! Terminate access to the data space. ! CALL h5sclose_f(aspace_id, error) |