diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2005-03-11 02:33:09 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2005-03-11 02:33:09 (GMT) |
commit | 45a16682e29fdb5d7bf071ebb6d52cca157e1718 (patch) | |
tree | 10833d71b36dba1d688d056a54f5491755f185e3 /src/H5Dio.c | |
parent | 4d86e9e8b87f5abd5d1c6fcfbcef738d36db387f (diff) | |
download | hdf5-45a16682e29fdb5d7bf071ebb6d52cca157e1718.zip hdf5-45a16682e29fdb5d7bf071ebb6d52cca157e1718.tar.gz hdf5-45a16682e29fdb5d7bf071ebb6d52cca157e1718.tar.bz2 |
[svn-r10187] Purpose:
Code cleanup, mostly
Description:
Remove remaining TBBT error info
Add new error code for block tracker
Platforms tested:
FreeBSD 4.11 (sleipnir)
Solaris 2.9 (shanti)
Diffstat (limited to 'src/H5Dio.c')
-rw-r--r-- | src/H5Dio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Dio.c b/src/H5Dio.c index 62afb22..0875999 100644 --- a/src/H5Dio.c +++ b/src/H5Dio.c @@ -2419,7 +2419,7 @@ H5D_create_chunk_map(const H5D_t *dataset, const H5T_t *mem_type, const H5S_t *f /* Initialize skip list for chunk selections */ if((fm->fsel=H5SL_create(H5SL_TYPE_HSIZE,0.5,H5D_DEFAULT_SKIPLIST_HEIGHT))==NULL) - HGOTO_ERROR(H5E_DATASET,H5E_CANTMAKETREE,FAIL,"can't create skip list for chunk selections") + HGOTO_ERROR(H5E_DATASET,H5E_CANTCREATE,FAIL,"can't create skip list for chunk selections") /* Initialize "last chunk" information */ fm->last_index=(hsize_t)-1; |