diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2000-10-18 16:43:40 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2000-10-18 16:43:40 (GMT) |
commit | 29c5ab73e4bb9ffc281f73325551228aed74522c (patch) | |
tree | 5d509fa9a290f2fc8112c9ed632ed19c29b14999 /src/H5Spublic.h | |
parent | 07d218b717d42d99a4c48fa8d14e29ed7e998d43 (diff) | |
download | hdf5-29c5ab73e4bb9ffc281f73325551228aed74522c.zip hdf5-29c5ab73e4bb9ffc281f73325551228aed74522c.tar.gz hdf5-29c5ab73e4bb9ffc281f73325551228aed74522c.tar.bz2 |
[svn-r2694] Purpose:
Bug fix
Description:
H5Sget_simple_extent_npoints return type is hsize_t and the error value is
0, but it is possible to have 0 points in a dataset with an unlimited
dimension, but no data written yet.
Solution:
Changed H5Sget_simple_extent_npoints return type to hssize_t and the error
value to -1
Platforms tested:
FreeBSD 4.1.1 (hawkwind)
Diffstat (limited to 'src/H5Spublic.h')
-rw-r--r-- | src/H5Spublic.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Spublic.h b/src/H5Spublic.h index 3f57139..21a884c 100644 --- a/src/H5Spublic.h +++ b/src/H5Spublic.h @@ -60,7 +60,7 @@ __DLL__ herr_t H5Sset_extent_simple(hid_t space_id, int rank, const hsize_t max[]); __DLL__ hid_t H5Scopy(hid_t space_id); __DLL__ herr_t H5Sclose(hid_t space_id); -__DLL__ hsize_t H5Sget_simple_extent_npoints(hid_t space_id); +__DLL__ hssize_t H5Sget_simple_extent_npoints(hid_t space_id); __DLL__ int H5Sget_simple_extent_ndims(hid_t space_id); __DLL__ int H5Sget_simple_extent_dims(hid_t space_id, hsize_t dims[], hsize_t maxdims[]); |