summaryrefslogtreecommitdiffstats
path: root/fortran
diff options
context:
space:
mode:
authorScot Breitenfeld <brtnfld@hdfgroup.org>2012-12-12 14:56:39 (GMT)
committerScot Breitenfeld <brtnfld@hdfgroup.org>2012-12-12 14:56:39 (GMT)
commit8dc9f39570e4368291f2016961a3658d2945b942 (patch)
tree46cae5ac2675fe39275e4d1b1fb16c8ca10b7af3 /fortran
parente92f4b1a7c2c0f4f41dc9a4102584e0dfa3988a3 (diff)
downloadhdf5-8dc9f39570e4368291f2016961a3658d2945b942.zip
hdf5-8dc9f39570e4368291f2016961a3658d2945b942.tar.gz
hdf5-8dc9f39570e4368291f2016961a3658d2945b942.tar.bz2
[svn-r23093] Fixed API to be 1.6 compliant, removed deprecated APIs
Checked: jam (gnu, mpi) --disable-deprecated-symbols, --with-default-api-version=v16
Diffstat (limited to 'fortran')
-rw-r--r--fortran/examples/h5_extend.f902
1 files changed, 1 insertions, 1 deletions
diff --git a/fortran/examples/h5_extend.f90 b/fortran/examples/h5_extend.f90
index 5f50b49..1316281 100644
--- a/fortran/examples/h5_extend.f90
+++ b/fortran/examples/h5_extend.f90
@@ -137,7 +137,7 @@ PROGRAM H5_EXTEND
!Extend the dataset. Dataset becomes 10 x 3.
!
size(1:2) = (/3,10/)
- CALL h5dextend_f(dset_id, size, error)
+ CALL h5dset_extent_f(dset_id, size, error)
offset(1:2) = (/0,3/)
count(1:2) = (/3,7/)