diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2008-12-11 19:34:27 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2008-12-11 19:34:27 (GMT) |
commit | 796f5a9f4c889296d8bae1913c7e86107755100b (patch) | |
tree | 1b8abbcc8c7fad874ed0f440904a44b1076fdc5d /src/H5Dchunk.c | |
parent | 4168cf3af65596824715ee7d4dd989d8578a95c0 (diff) | |
download | hdf5-796f5a9f4c889296d8bae1913c7e86107755100b.zip hdf5-796f5a9f4c889296d8bae1913c7e86107755100b.tar.gz hdf5-796f5a9f4c889296d8bae1913c7e86107755100b.tar.bz2 |
[svn-r16183] Description:
Bring r16182 back from trunk:
Rename internal routines, variables, macros, typedefs, etc. for chunked
dataset storage from "istore" to some variant of "chunk" or "btree".
Tested on:
FreeBSD/32 6.3 (duty) in debug mode
Diffstat (limited to 'src/H5Dchunk.c')
-rw-r--r-- | src/H5Dchunk.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/H5Dchunk.c b/src/H5Dchunk.c index 6058e16..82168a1 100644 --- a/src/H5Dchunk.c +++ b/src/H5Dchunk.c @@ -2982,7 +2982,7 @@ H5D_chunk_allocate(H5D_t *dset, hid_t dxpl_id, hbool_t full_overwrite) /* Get the chunk's info */ if(H5D_chunk_get_info(dset, dxpl_id, chunk_offset, &udata) < 0) - HGOTO_ERROR(H5E_DATASET, H5E_CANTGET, NULL, "error looking up chunk address") + HGOTO_ERROR(H5E_DATASET, H5E_CANTGET, FAIL, "error looking up chunk address") /* Check if the chunk exists yet on disk */ if(!H5F_addr_defined(udata.addr)) { @@ -4219,7 +4219,7 @@ done: /*------------------------------------------------------------------------- - * Function: H5D_istore_iter_dump + * Function: H5D_chunk_iter_dump * * Purpose: If the UDATA.STREAM member is non-null then debugging * information is written to that stream. |