diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2004-09-15 03:14:18 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2004-09-15 03:14:18 (GMT) |
commit | 18ba9f93bad5566ee6032deff61246f23fed0c42 (patch) | |
tree | 07789049580402bc5aa174b23591c5e081f7e7f7 | |
parent | b45920cb8bab3955c1eaf24db3c3d6f7beab5575 (diff) | |
download | hdf5-18ba9f93bad5566ee6032deff61246f23fed0c42.zip hdf5-18ba9f93bad5566ee6032deff61246f23fed0c42.tar.gz hdf5-18ba9f93bad5566ee6032deff61246f23fed0c42.tar.bz2 |
[svn-r9260] Purpose:
Bug fix
Description:
Correct leftover issue from recent changes to dataset region reference
which occurred when 1.4 backward compatibility is turned on.
Platforms tested:
FreeBSD 4.10 (sleipnir) w/1.4 compat
Configuration not tested by h5committest
-rw-r--r-- | src/H5R.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -663,7 +663,7 @@ H5R_get_object_type(H5F_t *file, hid_t dxpl_id, void *_ref) ent.file=file; /* Get the object oid */ - p=(uint8_t *)ref->oid; + p=(uint8_t *)ref; H5F_addr_decode(ent.file,(const uint8_t **)&p,&(ent.header)); /* Get the OID type */ |