summaryrefslogtreecommitdiffstats
path: root/testpar
diff options
context:
space:
mode:
authorPaul Harten <pharten@ncsa.uiuc.edu>1998-07-24 16:25:30 (GMT)
committerPaul Harten <pharten@ncsa.uiuc.edu>1998-07-24 16:25:30 (GMT)
commitca426e2f32b0332a05e63b5e2820acfffef5efd9 (patch)
treea8429bf1e8e9677280ce0609c2d0cdad7387ab03 /testpar
parentb4107d530aa02b107d86053eda8a81ecc330ad77 (diff)
downloadhdf5-ca426e2f32b0332a05e63b5e2820acfffef5efd9.zip
hdf5-ca426e2f32b0332a05e63b5e2820acfffef5efd9.tar.gz
hdf5-ca426e2f32b0332a05e63b5e2820acfffef5efd9.tar.bz2
[svn-r543] Purpose:
Link Bug Fix Problem: Fixed a typo, Woops! Solution: replaced `H5Sexent_dims' with `H5Sextent_dims' Platform tested: ASCI Red
Diffstat (limited to 'testpar')
-rw-r--r--testpar/t_dset.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/testpar/t_dset.c b/testpar/t_dset.c
index aff2050..db9867a 100644
--- a/testpar/t_dset.c
+++ b/testpar/t_dset.c
@@ -1040,7 +1040,7 @@ extend_readInd(char *filename)
file_dataspace = H5Dget_space (dataset1);
VRFY((file_dataspace != FAIL), "H5Dget_space succeeded");
- ret=H5Sexent_dims(file_dataspace, dims, NULL);
+ ret=H5Sextent_dims(file_dataspace, dims, NULL);
VRFY((ret > 0), "H5Sextent_dims succeeded");
dims[0]++;
ret=H5Dextend(dataset1, dims);