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/H5Spoint.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/H5Spoint.c')
-rw-r--r-- | src/H5Spoint.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Spoint.c b/src/H5Spoint.c index 86b1bc9..58e5a60 100644 --- a/src/H5Spoint.c +++ b/src/H5Spoint.c @@ -444,7 +444,7 @@ done: REVISION LOG --------------------------------------------------------------------------*/ hsize_t -H5S_hyper_npoints (H5S_t *space) +H5S_hyper_npoints (const H5S_t *space) { FUNC_ENTER (H5S_hyper_npoints, 0); |