diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2009-02-01 02:42:10 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2009-02-01 02:42:10 (GMT) |
commit | cde7807ceb3cd66bf60d9b6d87570f4f8422cbce (patch) | |
tree | 1fb5fbfb6b67370bebc3093d2e270859435af558 /src/H5Goh.c | |
parent | 2aa344d77a31f8fb692d25fc3adc6ed668184d72 (diff) | |
download | hdf5-cde7807ceb3cd66bf60d9b6d87570f4f8422cbce.zip hdf5-cde7807ceb3cd66bf60d9b6d87570f4f8422cbce.tar.gz hdf5-cde7807ceb3cd66bf60d9b6d87570f4f8422cbce.tar.bz2 |
[svn-r16396] Description:
Bring r16391:16395 back from trunk
Tested on:
FreeBSD/32 6.3 (duty)
(h5committest not required on this branch)
Diffstat (limited to 'src/H5Goh.c')
-rw-r--r-- | src/H5Goh.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/H5Goh.c b/src/H5Goh.c index 497badb..2dab8aa 100644 --- a/src/H5Goh.c +++ b/src/H5Goh.c @@ -272,14 +272,14 @@ H5O_group_bh_info(H5F_t *f, hid_t dxpl_id, H5O_t *oh, H5_ih_info_t *bh_info) HDassert(bh_info); /* Check for "new style" group info */ - if(NULL == H5O_msg_read_real(f, dxpl_id, oh, H5O_LINFO_ID, &linfo)) { + if(NULL == H5O_msg_read_oh(f, dxpl_id, oh, H5O_LINFO_ID, &linfo)) { H5O_stab_t stab; /* Info about symbol table */ /* Must be "old style" group, clear error stack */ H5E_clear_stack(NULL); /* Get symbol table message */ - if(NULL == H5O_msg_read_real(f, dxpl_id, oh, H5O_STAB_ID, &stab)) + if(NULL == H5O_msg_read_oh(f, dxpl_id, oh, H5O_STAB_ID, &stab)) HGOTO_ERROR(H5E_SYM, H5E_CANTGET, FAIL, "can't find LINFO nor STAB messages") /* Get symbol table size info */ |