summaryrefslogtreecommitdiffstats
path: root/src/H5VLnative_object.c
diff options
context:
space:
mode:
authorJerome Soumagne <jsoumagne@hdfgroup.org>2019-12-05 18:10:12 (GMT)
committerJerome Soumagne <jsoumagne@hdfgroup.org>2019-12-09 20:58:29 (GMT)
commit1aea46ce671daf2828ac65d0b8551b369f497922 (patch)
treea77307471815ac8a8ca266aed665b4d101b97415 /src/H5VLnative_object.c
parent94de95266ac13503fdb48146da5bd646b89c2ffb (diff)
downloadhdf5-1aea46ce671daf2828ac65d0b8551b369f497922.zip
hdf5-1aea46ce671daf2828ac65d0b8551b369f497922.tar.gz
hdf5-1aea46ce671daf2828ac65d0b8551b369f497922.tar.bz2
Fix H5VL_token_t type and fix H5VL_loc_by_token to use H5VL_token_t *
Diffstat (limited to 'src/H5VLnative_object.c')
-rw-r--r--src/H5VLnative_object.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5VLnative_object.c b/src/H5VLnative_object.c
index dfa4eab..6a22b05 100644
--- a/src/H5VLnative_object.c
+++ b/src/H5VLnative_object.c
@@ -287,7 +287,7 @@ H5VL__native_object_specific(void *obj, const H5VL_loc_params_t *loc_params, H5V
/* Lookup object */
case H5VL_OBJECT_LOOKUP:
{
- void *token = va_arg(arguments, void *);
+ H5VL_token_t *token = va_arg(arguments, H5VL_token_t *);
HDassert(token);