[svn-r4755] Purpose:

Bug Fix
Description:
    Change H5Rget_object_type to H5Rget_obj_type.
Platforms tested:
    Linux 2.2.x (eirene)
This commit is contained in:
Quincey Koziol 2001-12-22 15:12:57 -05:00
parent 94f3abb555
commit 6ba2c123e6

View File

@ -221,7 +221,7 @@ nh5rget_object_type_obj_c (hid_t_f *dset_id, int_f *ref, int_f *obj_type)
* Call H5Rget_object_type function.
*/
c_dset_id = *dset_id;
c_obj_type = H5Rget_object_type(c_dset_id, &ref_c);
c_obj_type = H5Rget_obj_type(c_dset_id, H5R_OBJECT, &ref_c);
if(c_obj_type < 0) return ret_value;
*obj_type = (int_f)c_obj_type;
ret_value = 0;