diff options
author | Elena Pourmal <epourmal@hdfgroup.org> | 2000-11-17 22:45:34 (GMT) |
---|---|---|
committer | Elena Pourmal <epourmal@hdfgroup.org> | 2000-11-17 22:45:34 (GMT) |
commit | 320dfb1a03b50f932959ee595bc5b723f770d25c (patch) | |
tree | 88973b4dd27f2a94b5f2284905f88d51569fe358 /fortran/examples/selectele.f90 | |
parent | 610ad05c1d18045b33a922e59a3f5fd34870c3fc (diff) | |
download | hdf5-320dfb1a03b50f932959ee595bc5b723f770d25c.zip hdf5-320dfb1a03b50f932959ee595bc5b723f770d25c.tar.gz hdf5-320dfb1a03b50f932959ee595bc5b723f770d25c.tar.bz2 |
[svn-r2977]
Purpose:
Code maintenance
Description:
Fixed the code to use h5open_f and h5close_f subroutines
Platforms tested:
Solaris 2.6
Diffstat (limited to 'fortran/examples/selectele.f90')
-rw-r--r-- | fortran/examples/selectele.f90 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fortran/examples/selectele.f90 b/fortran/examples/selectele.f90 index 6e99d1f..e0f25c8 100644 --- a/fortran/examples/selectele.f90 +++ b/fortran/examples/selectele.f90 @@ -75,7 +75,7 @@ ! ! Initialize FORTRAN interface. ! - CALL h5init_fortran_f(error) + CALL h5open_f(error) ! ! Create file1, file2 using default properties. @@ -277,6 +277,6 @@ ! ! Close FORTRAN interface. ! - CALL h5close_fortran_f(error) + CALL h5close_f(error) END PROGRAM SELECTEXAMPLE |