diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 1998-07-07 16:14:49 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 1998-07-07 16:14:49 (GMT) |
commit | 0f166ceda6b5002e4e45984ee981d8dab8ccf078 (patch) | |
tree | ab90e2d7cc24b8a8c17327f6131138721edb5318 /src/H5Sselect.c | |
parent | cf419d05ab65b423bc4ce395972e84522ca3eec5 (diff) | |
download | hdf5-0f166ceda6b5002e4e45984ee981d8dab8ccf078.zip hdf5-0f166ceda6b5002e4e45984ee981d8dab8ccf078.tar.gz hdf5-0f166ceda6b5002e4e45984ee981d8dab8ccf078.tar.bz2 |
[svn-r455] Fixed various const and signed/unsigned problems and corrected one incorrect
type. Should compile much cleaner now.
Diffstat (limited to 'src/H5Sselect.c')
-rw-r--r-- | src/H5Sselect.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Sselect.c b/src/H5Sselect.c index e07b60b..cfed797 100644 --- a/src/H5Sselect.c +++ b/src/H5Sselect.c @@ -356,7 +356,7 @@ hsize_t H5Sselect_npoints (hid_t spaceid) EXAMPLES REVISION LOG --------------------------------------------------------------------------*/ -hsize_t H5S_select_npoints (H5S_t *space) +hsize_t H5S_select_npoints (const H5S_t *space) { herr_t ret_value=FAIL; /* return value */ |