summaryrefslogtreecommitdiffstats
path: root/src/H5Tref.c
diff options
context:
space:
mode:
authorJerome Soumagne <jsoumagne@hdfgroup.org>2019-11-26 01:07:44 (GMT)
committerJerome Soumagne <jsoumagne@hdfgroup.org>2019-12-09 20:55:03 (GMT)
commit5c97046501f35cc435144c5e111dadcb10e5c290 (patch)
treee7fd1a3084cd418669c8cf87d108e5bd036cdf39 /src/H5Tref.c
parent518f35d4341213cbfbd23e697fbdc9e9641fc03f (diff)
downloadhdf5-5c97046501f35cc435144c5e111dadcb10e5c290.zip
hdf5-5c97046501f35cc435144c5e111dadcb10e5c290.tar.gz
hdf5-5c97046501f35cc435144c5e111dadcb10e5c290.tar.bz2
Remove H5VL_NATIVE_FILE_GET_FILE_ID and add H5VL_OBJECT_GET_FILE
Remove H5F__get_file_id() and use only private routine instead
Diffstat (limited to 'src/H5Tref.c')
-rw-r--r--src/H5Tref.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Tref.c b/src/H5Tref.c
index 23548b3..5c72489 100644
--- a/src/H5Tref.c
+++ b/src/H5Tref.c
@@ -508,7 +508,7 @@ H5T__ref_mem_write(H5VL_object_t *src_file, const void *src_buf, size_t src_size
/* If no filename set, this is not an external reference */
if(NULL == H5R_REF_FILENAME(dst_ref)) {
/* TODO temporary hack to retrieve file object */
- if((file_id = H5F__get_file_id(src_f, FALSE)) < 0)
+ if((file_id = H5F_get_file_id(src_file, H5I_FILE, FALSE)) < 0)
HGOTO_ERROR(H5E_ARGS, H5E_BADTYPE, FAIL, "not a file or file object")
/* Attach loc ID to reference and hold reference to it */