diff options
author | Albert Cheng <acheng@hdfgroup.org> | 2004-05-20 21:38:28 (GMT) |
---|---|---|
committer | Albert Cheng <acheng@hdfgroup.org> | 2004-05-20 21:38:28 (GMT) |
commit | f448609e49e430abc5092e2f1773830dc45ea89d (patch) | |
tree | 395966bde409041e7a8f7c41d18100989fd163a5 /fortran/examples | |
parent | 85ff720d0c889f98e05692ac02533d99d798a094 (diff) | |
download | hdf5-f448609e49e430abc5092e2f1773830dc45ea89d.zip hdf5-f448609e49e430abc5092e2f1773830dc45ea89d.tar.gz hdf5-f448609e49e430abc5092e2f1773830dc45ea89d.tar.bz2 |
[svn-r8556] Purpose:
Bug fix.
Description:
The Example dimension size is incorrect. Changed it to 3.
Platforms tested:
Tested in TG-NCSA which detected the error.
Misc. update:
Diffstat (limited to 'fortran/examples')
-rw-r--r-- | fortran/examples/hyperslab.f90 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fortran/examples/hyperslab.f90 b/fortran/examples/hyperslab.f90 index f949f11..c6eef2e 100644 --- a/fortran/examples/hyperslab.f90 +++ b/fortran/examples/hyperslab.f90 @@ -52,7 +52,7 @@ INTEGER :: i, j, k INTEGER :: error, error_n ! Error flags - INTEGER(HSIZE_T), DIMENSION(2) :: data_dims + INTEGER(HSIZE_T), DIMENSION(3) :: data_dims ! |