summaryrefslogtreecommitdiffstats
path: root/src/H5Fquery.c
diff options
context:
space:
mode:
authorVailin Choi <vchoi@jam.ad.hdfgroup.org>2019-08-31 06:24:38 (GMT)
committerVailin Choi <vchoi@jam.ad.hdfgroup.org>2019-08-31 06:24:38 (GMT)
commiteef0cf26941072f449a8e332babcf21ee9eea128 (patch)
tree59b23c910202a1c937fd7054210addde4e77d976 /src/H5Fquery.c
parentfe3c4567f58a8558db098511ddafbc91e26015f1 (diff)
downloadhdf5-eef0cf26941072f449a8e332babcf21ee9eea128.zip
hdf5-eef0cf26941072f449a8e332babcf21ee9eea128.tar.gz
hdf5-eef0cf26941072f449a8e332babcf21ee9eea128.tar.bz2
Move ext_path field in H5F_t to H5F_shared_t.
Remove unused routine H5F_set_coll_md_read().
Diffstat (limited to 'src/H5Fquery.c')
-rw-r--r--src/H5Fquery.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/H5Fquery.c b/src/H5Fquery.c
index 70a8c9f..f36f348 100644
--- a/src/H5Fquery.c
+++ b/src/H5Fquery.c
@@ -229,9 +229,9 @@ H5F_get_extpath(const H5F_t *f)
FUNC_ENTER_NOAPI_NOINIT_NOERR
HDassert(f);
- HDassert(f->extpath);
+ HDassert(f->shared->extpath);
- FUNC_LEAVE_NOAPI(f->extpath)
+ FUNC_LEAVE_NOAPI(f->shared->extpath)
} /* end H5F_get_extpath() */