summaryrefslogtreecommitdiffstats
path: root/src/H5VLnative_object.c
diff options
context:
space:
mode:
authorJerome Soumagne <jsoumagne@hdfgroup.org>2019-12-05 18:10:12 (GMT)
committerDavid Young <dyoung@hdfgroup.org>2020-05-20 14:20:19 (GMT)
commit56d210ac3ffd799d3b53392019f036990b6683e7 (patch)
tree55ea25bbb8c176414c536d56a15ea2e024384945 /src/H5VLnative_object.c
parent7bbe57d309a28a2aa16661ca437070b646326c82 (diff)
downloadhdf5-56d210ac3ffd799d3b53392019f036990b6683e7.zip
hdf5-56d210ac3ffd799d3b53392019f036990b6683e7.tar.gz
hdf5-56d210ac3ffd799d3b53392019f036990b6683e7.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);