summaryrefslogtreecommitdiffstats
path: root/src/H5O.c
diff options
context:
space:
mode:
authorMohamad Chaarawi <chaarawi@hdfgroup.org>2014-08-05 14:10:53 (GMT)
committerMohamad Chaarawi <chaarawi@hdfgroup.org>2014-08-05 14:10:53 (GMT)
commit68067443e04f352aeca5b41243e77e4aacc4cd98 (patch)
treebe59edd69a4fdf699759c732daac387d9e1a0474 /src/H5O.c
parent61c0d0813f6de1e75606d3cbf5a185962c0ece1c (diff)
downloadhdf5-68067443e04f352aeca5b41243e77e4aacc4cd98.zip
hdf5-68067443e04f352aeca5b41243e77e4aacc4cd98.tar.gz
hdf5-68067443e04f352aeca5b41243e77e4aacc4cd98.tar.bz2
[svn-r25511] fix bug in native implementation of H5Oopen_by_idx.
Diffstat (limited to 'src/H5O.c')
-rw-r--r--src/H5O.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/H5O.c b/src/H5O.c
index 3fb600c..8a87ecf 100644
--- a/src/H5O.c
+++ b/src/H5O.c
@@ -332,7 +332,8 @@ H5Oopen_by_idx(hid_t loc_id, const char *group_name, H5_index_t idx_type,
HGOTO_ERROR(H5E_ARGS, H5E_BADTYPE, FAIL, "ID does not contain VOL information")
/* Open the object through the VOL */
- if(NULL == (opened_obj = H5VL_object_open(obj, loc_params, vol_plugin, &opened_type, H5AC_dxpl_id, H5_EVENT_STACK_NULL)))
+ if(NULL == (opened_obj = H5VL_object_open(obj, loc_params, vol_plugin, &opened_type,
+ H5AC_dxpl_id, H5_EVENT_STACK_NULL)))
HGOTO_ERROR(H5E_SYM, H5E_CANTOPENOBJ, FAIL, "unable to open object")
if ((ret_value = H5VL_object_register(opened_obj, opened_type, vol_plugin, TRUE)) < 0)