summaryrefslogtreecommitdiffstats
path: root/src/H5R.c
diff options
context:
space:
mode:
authorMohamad Chaarawi <chaarawi@hdfgroup.org>2012-05-23 18:50:41 (GMT)
committerMohamad Chaarawi <chaarawi@hdfgroup.org>2012-05-23 18:50:41 (GMT)
commit6eb37e3d319c2e8c3d0804f73c6fb209bdc9f990 (patch)
treee5f37e1d2f6562995f92b2e9343e15e0eaafae60 /src/H5R.c
parent7d289e8a697aba2f537a62d3b6352e357b3bd83b (diff)
downloadhdf5-6eb37e3d319c2e8c3d0804f73c6fb209bdc9f990.zip
hdf5-6eb37e3d319c2e8c3d0804f73c6fb209bdc9f990.tar.gz
hdf5-6eb37e3d319c2e8c3d0804f73c6fb209bdc9f990.tar.bz2
[svn-r22399] move location token out of va_list on lookup callback
Diffstat (limited to 'src/H5R.c')
-rw-r--r--src/H5R.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/H5R.c b/src/H5R.c
index d10f39f..807cf18 100644
--- a/src/H5R.c
+++ b/src/H5R.c
@@ -527,7 +527,8 @@ H5Rdereference2(hid_t obj_id, hid_t oapl_id, H5R_type_t ref_type, const void *_r
HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "invalid reference pointer")
/* Get the token for the Object location through the VOL */
- if(H5VL_object_lookup (obj_id, H5VL_OBJECT_LOOKUP_BY_REF, H5_REQUEST_NULL, &location, ref_type, _ref) < 0)
+ if(H5VL_object_lookup (obj_id, H5VL_OBJECT_LOOKUP_BY_REF, &location, H5_REQUEST_NULL,
+ ref_type, _ref) < 0)
HGOTO_ERROR(H5E_SYM, H5E_CANTINIT, FAIL, "unable to locate object")