summaryrefslogtreecommitdiffstats
path: root/src/H5VL.c
diff options
context:
space:
mode:
authorMohamad Chaarawi <chaarawi@hdfgroup.org>2012-05-21 22:42:33 (GMT)
committerMohamad Chaarawi <chaarawi@hdfgroup.org>2012-05-21 22:42:33 (GMT)
commitbce79181a88b6b780f1d93ff5564f48f8d9d83cc (patch)
tree162e4b21df6cabcef1928ae9681669474082fed7 /src/H5VL.c
parent41c42d25f36519afdb603abf6c3ca76e39b20435 (diff)
downloadhdf5-bce79181a88b6b780f1d93ff5564f48f8d9d83cc.zip
hdf5-bce79181a88b6b780f1d93ff5564f48f8d9d83cc.tar.gz
hdf5-bce79181a88b6b780f1d93ff5564f48f8d9d83cc.tar.bz2
[svn-r22387] H5Fget_obj_counts/ids (iterate over all IDs and call corresponding VOL CBs)
Diffstat (limited to 'src/H5VL.c')
-rw-r--r--src/H5VL.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/H5VL.c b/src/H5VL.c
index bf7b1bb..ab675df 100644
--- a/src/H5VL.c
+++ b/src/H5VL.c
@@ -940,7 +940,8 @@ H5VL_datatype_commit(hid_t uid, const char *name, hid_t type_id, hid_t lcpl_id,
HGOTO_ERROR(H5E_ATOM, H5E_CANTREGISTER, FAIL, "unable to atomize datatype handle")
id_wrapper2->vol_plugin = id_wrapper1->vol_plugin;
- H5I_subst(type_id, id_wrapper2);
+ H5I_register_cb(type_id, H5VL_get_wrapper_struct, id_wrapper2);
+ //H5I_subst(type_id, id_wrapper2);
//H5I_remove_verify(type_id, H5I_DATATYPE);
#endif