diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2010-04-15 19:47:56 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2010-04-15 19:47:56 (GMT) |
commit | 789e672956c99300d6e22f602fae5bc2fe286ce6 (patch) | |
tree | e0ab528dd1d5d4947cff584c60580284b6fe25b0 /src/H5Dint.c | |
parent | a56445f5c5e2e8e4a8032b9d9958247c08b51438 (diff) | |
download | hdf5-789e672956c99300d6e22f602fae5bc2fe286ce6.zip hdf5-789e672956c99300d6e22f602fae5bc2fe286ce6.tar.gz hdf5-789e672956c99300d6e22f602fae5bc2fe286ce6.tar.bz2 |
[svn-r18569] Desription:
Fix a problem in the metadata accumulator code and clean up a few
compiler warnings.
Tested on:
Mac OS X/32 10.6.3 (amazon) w/debug
(h5committest not required on this branch)
Diffstat (limited to 'src/H5Dint.c')
-rw-r--r-- | src/H5Dint.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Dint.c b/src/H5Dint.c index 49a83a2..51e2a1f 100644 --- a/src/H5Dint.c +++ b/src/H5Dint.c @@ -2253,7 +2253,7 @@ H5D_vlen_get_buf_size_alloc(size_t size, void *info) H5D_vlen_bufsize_t *vlen_bufsize = (H5D_vlen_bufsize_t *)info; void *ret_value; /* Return value */ - FUNC_ENTER_NOAPI_NOINIT_NOFUNC(H5D_vlen_get_buf_size_alloc) + FUNC_ENTER_NOAPI_NOINIT(H5D_vlen_get_buf_size_alloc) /* Get a temporary pointer to space for the VL data */ if((vlen_bufsize->vl_tbuf = H5FL_BLK_REALLOC(vlen_vl_buf, vlen_bufsize->vl_tbuf, size)) != NULL) |