diff options
author | Mohamad Chaarawi <chaarawi@hdfgroup.org> | 2012-04-17 21:54:02 (GMT) |
---|---|---|
committer | Mohamad Chaarawi <chaarawi@hdfgroup.org> | 2012-04-17 21:54:02 (GMT) |
commit | 33f70a817aba7a4dd020fb29a187c53ba05e157c (patch) | |
tree | 4ff9ee2addb8a67212bc01170a102a2399d4c005 /src/H5Tcommit.c | |
parent | 2afee27ba9b7f22aef111b282106e5deafb61e7b (diff) | |
download | hdf5-33f70a817aba7a4dd020fb29a187c53ba05e157c.zip hdf5-33f70a817aba7a4dd020fb29a187c53ba05e157c.tar.gz hdf5-33f70a817aba7a4dd020fb29a187c53ba05e157c.tar.bz2 |
[svn-r22292] remove unnecessary lookup for object locations into VOL
add a public API routine to set a user defined VOL driver
some fixes to allow vol plugins to be created and used outside the library
Diffstat (limited to 'src/H5Tcommit.c')
-rw-r--r-- | src/H5Tcommit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Tcommit.c b/src/H5Tcommit.c index 7e90a2d..c2654b4 100644 --- a/src/H5Tcommit.c +++ b/src/H5Tcommit.c @@ -152,7 +152,7 @@ H5Tcommit2(hid_t loc_id, const char *name, hid_t type_id, hid_t lcpl_id, if(TRUE != H5P_isa_class(tapl_id, H5P_DATATYPE_ACCESS)) HGOTO_ERROR(H5E_ARGS, H5E_BADTYPE, FAIL, "not datatype access property list") - /* Open the object through the VOL */ + /* commite the datatype through the VOL */ if((ret_value = H5VL_datatype_commit(loc_id, name, type_id, lcpl_id, tcpl_id, tapl_id)) < 0) HGOTO_ERROR(H5E_SYM, H5E_CANTINIT, FAIL, "unable to open object") done: |