summaryrefslogtreecommitdiffstats
path: root/src/H5S.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2008-06-03 20:34:58 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2008-06-03 20:34:58 (GMT)
commit79380c228cb804bb7ed9bb1ac7b3f36706719c20 (patch)
tree24e7905fd80682e481e5ab9b342dd20862095f01 /src/H5S.c
parenta9fa9a4a3715b8bd0dce83911548b88f30329c62 (diff)
downloadhdf5-79380c228cb804bb7ed9bb1ac7b3f36706719c20.zip
hdf5-79380c228cb804bb7ed9bb1ac7b3f36706719c20.tar.gz
hdf5-79380c228cb804bb7ed9bb1ac7b3f36706719c20.tar.bz2
[svn-r15132] Description:
Bring back revision 15131 from trunk: Finish omnibus chunked dataset I/O refactoring, to separate general actions on chunked datasets from actions that are specific to using the v1 B-tree index. Cleaned up a few bugs and added some additional tests also. Tested on: Mac OS X/32 10.5.3 (amazon) Linux/32 2.4 (chicago)
Diffstat (limited to 'src/H5S.c')
-rw-r--r--src/H5S.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/H5S.c b/src/H5S.c
index 4996f1f..dd16498 100644
--- a/src/H5S.c
+++ b/src/H5S.c
@@ -43,7 +43,6 @@ static herr_t H5S_set_extent_simple (H5S_t *space, unsigned rank,
static htri_t H5S_is_simple(const H5S_t *sdim);
static herr_t H5S_encode(H5S_t *obj, unsigned char *buf, size_t *nalloc);
static H5S_t *H5S_decode(const unsigned char *buf);
-static htri_t H5S_extent_equal(const H5S_t *ds1, const H5S_t *ds2);
#ifdef H5_HAVE_PARALLEL
/* Global vars whose value can be set from environment variable also */
@@ -1933,7 +1932,7 @@ done:
DESCRIPTION
Compare two dataspaces if their extents are identical.
--------------------------------------------------------------------------*/
-static htri_t
+htri_t
H5S_extent_equal(const H5S_t *ds1, const H5S_t *ds2)
{
unsigned u; /* Local index variable */