diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 1998-09-02 21:16:24 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 1998-09-02 21:16:24 (GMT) |
commit | 97f56b57a0e5f60e424cdcb887d243787d3f866a (patch) | |
tree | 3716896dcc977cfcffca7742afd1ab13796999b7 /src/H5Spoint.c | |
parent | 8fde009d734d3f20da992bdad8b50f7a1e99099e (diff) | |
download | hdf5-97f56b57a0e5f60e424cdcb887d243787d3f866a.zip hdf5-97f56b57a0e5f60e424cdcb887d243787d3f866a.tar.gz hdf5-97f56b57a0e5f60e424cdcb887d243787d3f866a.tar.bz2 |
[svn-r654] Fixed last bug (hah! ;-) for beta release, changed H5Gget_stat to H5Gget_objinfo
and renamed internal functions to match up with the renamed API functions.
Diffstat (limited to 'src/H5Spoint.c')
-rw-r--r-- | src/H5Spoint.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/H5Spoint.c b/src/H5Spoint.c index 166721b..cf6fdee 100644 --- a/src/H5Spoint.c +++ b/src/H5Spoint.c @@ -58,7 +58,6 @@ const H5S_mconv_t H5S_POINT_MCONV[1] = {{ "point", /*name */ H5S_SEL_POINTS, /*selection type */ H5S_point_init, /*initialize */ - H5S_point_init, /*initialize background */ H5S_point_mgath, /*gather */ H5S_point_mscat, /*scatter */ }}; @@ -514,7 +513,7 @@ H5S_point_mgath (const void *_buf, size_t elmt_size, #ifdef QAK printf("%s: check 1.0\n",FUNC); #endif /* QAK */ - if ((space_ndims=H5S_extent_dims (mem_space, mem_size, NULL))<0) { + if ((space_ndims=H5S_get_simple_extent_dims (mem_space, mem_size, NULL))<0) { HRETURN_ERROR (H5E_DATASPACE, H5E_CANTINIT, 0, "unable to retrieve data space dimensions"); } @@ -598,7 +597,7 @@ H5S_point_mscat (const void *_tconv_buf, size_t elmt_size, * only handle hyperslabs with unit sample because there's currently no * way to pass sample information to H5V_hyper_copy(). */ - if ((space_ndims=H5S_extent_dims (mem_space, mem_size, NULL))<0) { + if ((space_ndims=H5S_get_simple_extent_dims (mem_space, mem_size, NULL))<0) { HRETURN_ERROR (H5E_DATASPACE, H5E_CANTINIT, FAIL, "unable to retrieve data space dimensions"); } |