summaryrefslogtreecommitdiffstats
path: root/src/H5O.c
diff options
context:
space:
mode:
authorJerome Soumagne <jsoumagne@hdfgroup.org>2019-11-26 01:07:44 (GMT)
committerJerome Soumagne <jsoumagne@hdfgroup.org>2019-11-27 20:17:08 (GMT)
commitf46494ffd8449fc610798c8af312362608029d3d (patch)
treebb461430b391552fd4305e4ad2b35ab3f3232555 /src/H5O.c
parentb8a56718e40efaf6954a760984b9d513dbff8f7d (diff)
downloadhdf5-f46494ffd8449fc610798c8af312362608029d3d.zip
hdf5-f46494ffd8449fc610798c8af312362608029d3d.tar.gz
hdf5-f46494ffd8449fc610798c8af312362608029d3d.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/H5O.c')
-rw-r--r--src/H5O.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5O.c b/src/H5O.c
index b79914c..7e5694a 100644
--- a/src/H5O.c
+++ b/src/H5O.c
@@ -278,7 +278,7 @@ H5Oopen_by_addr(hid_t loc_id, haddr_t addr)
HGOTO_ERROR(H5E_ARGS, H5E_BADTYPE, H5I_INVALID_HID, "invalid location identifier")
/* Get the file for the object */
- if((file_id = H5F_get_file_id(loc_id, vol_obj_type, FALSE)) < 0)
+ if((file_id = H5F_get_file_id(vol_obj, vol_obj_type, FALSE)) < 0)
HGOTO_ERROR(H5E_ARGS, H5E_BADTYPE, H5I_INVALID_HID, "not a file or file object")
/* Retrieve VOL object */