diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 1998-07-14 21:14:12 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 1998-07-14 21:14:12 (GMT) |
commit | bf5165c748def41aec8b1904d450b319617f5e57 (patch) | |
tree | 92ab62f31469b774c529cdb9cdca4485214221f5 /test/dsets.c | |
parent | 41b05e1ce0abd75acdf7c8b69929e3aa072ac35d (diff) | |
download | hdf5-bf5165c748def41aec8b1904d450b319617f5e57.zip hdf5-bf5165c748def41aec8b1904d450b319617f5e57.tar.gz hdf5-bf5165c748def41aec8b1904d450b319617f5e57.tar.bz2 |
[svn-r489] Changed more API functions to the new names as documented. Also, added
stub for testing selections.
Diffstat (limited to 'test/dsets.c')
-rw-r--r-- | test/dsets.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/dsets.c b/test/dsets.c index 9eccc2d..4d0477f 100644 --- a/test/dsets.c +++ b/test/dsets.c @@ -704,7 +704,7 @@ test_multiopen (hid_t file) /* Get the size from the second handle */ if ((space = H5Dget_space (dset2))<0) goto error; - if (H5Sget_dims (space, tmp_size, NULL)<0) goto error; + if (H5Sextent_dims (space, tmp_size, NULL)<0) goto error; if (cur_size[0]!=tmp_size[0]) { puts ("*FAILED*"); printf (" Got %d instead of %d!\n", |