diff options
author | Elena Pourmal <epourmal@hdfgroup.org> | 2000-11-17 22:44:24 (GMT) |
---|---|---|
committer | Elena Pourmal <epourmal@hdfgroup.org> | 2000-11-17 22:44:24 (GMT) |
commit | 610ad05c1d18045b33a922e59a3f5fd34870c3fc (patch) | |
tree | f08da22ca543fbfbc305398393208b31357e3aaf /fortran/test/fflush2.f90 | |
parent | 5dad15399582249d6fa0d7100a84b46116925bf8 (diff) | |
download | hdf5-610ad05c1d18045b33a922e59a3f5fd34870c3fc.zip hdf5-610ad05c1d18045b33a922e59a3f5fd34870c3fc.tar.gz hdf5-610ad05c1d18045b33a922e59a3f5fd34870c3fc.tar.bz2 |
[svn-r2976]
Purpose:
Code maintenance
Description:
Fixed the code to use h5open_f and h5close_f subroutines.
Platforms tested:
Solaris2.6
Diffstat (limited to 'fortran/test/fflush2.f90')
-rw-r--r-- | fortran/test/fflush2.f90 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fortran/test/fflush2.f90 b/fortran/test/fflush2.f90 index 63f83a8..a494d63 100644 --- a/fortran/test/fflush2.f90 +++ b/fortran/test/fflush2.f90 @@ -71,7 +71,7 @@ ! !Initialize FORTRAN predifined datatypes ! - CALL h5init_fortran_f(error) + CALL h5open_f(error) CALL check("h5init_types_f",error,total_error) ! @@ -152,7 +152,7 @@ ! !Close FORTRAN predifined datatypes ! - CALL h5close_fortran_f(error) + CALL h5close_f(error) CALL check("h5close_types_f",error,total_error) END PROGRAM FFLUSH2EXAMPLE |