diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2004-12-30 14:27:29 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2004-12-30 14:27:29 (GMT) |
commit | 11631664fd46f16acdee324a07851f47480db0c9 (patch) | |
tree | 90faca92d82b1231f65c29b80273a182043d0f13 /test | |
parent | 427ff7da2848042f68ecfadf5a321b1d8077e9db (diff) | |
download | hdf5-11631664fd46f16acdee324a07851f47480db0c9.zip hdf5-11631664fd46f16acdee324a07851f47480db0c9.tar.gz hdf5-11631664fd46f16acdee324a07851f47480db0c9.tar.bz2 |
[svn-r9730] 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 */ |