diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2004-12-30 14:27:33 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2004-12-30 14:27:33 (GMT) |
commit | c47ff1656fa52bca192e9f1b830863e2d549e382 (patch) | |
tree | 8aead7360ee0ece7bfe99f4c6bd15ab580dd33f9 /test | |
parent | 7db5dc86c953cc83a7c0e370b3a7bf98f91eaf0e (diff) | |
download | hdf5-c47ff1656fa52bca192e9f1b830863e2d549e382.zip hdf5-c47ff1656fa52bca192e9f1b830863e2d549e382.tar.gz hdf5-c47ff1656fa52bca192e9f1b830863e2d549e382.tar.bz2 |
[svn-r9731] Purpose:
Code cleanup (sorta)
Description:
Transition the generic property list code from using the threaded, balanced
binary tree code (H5TB<foo>() routines) to use skip lists (H5SL<foo>() routines)
for internal management of properties, etc.
Platforms tested:
FreeBSD 4.10 (sleipnir)
Too minor to require h5committest
Diffstat (limited to 'test')
-rw-r--r-- | test/tskiplist.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/tskiplist.c b/test/tskiplist.c index 0a02da3..85eba86 100644 --- a/test/tskiplist.c +++ b/test/tskiplist.c @@ -552,7 +552,7 @@ test_skiplist_string(void) /* Insert objects into the skip list */ for(u=0; u<10; u++) { - ret=H5SL_insert(slist,&data[u],&data[u].s); + ret=H5SL_insert(slist,&data[u],data[u].s); CHECK(ret, FAIL, "H5SL_insert"); } /* end for */ |