diff options
author | Jordan Henderson <jhenderson@hdfgroup.org> | 2023-10-03 19:39:01 (GMT) |
---|---|---|
committer | Jordan Henderson <jhenderson@hdfgroup.org> | 2023-10-03 19:39:01 (GMT) |
commit | db8b00865fdb76ce076d2032a0b27c5b012e9afc (patch) | |
tree | 3ffb877096fe9dec084f9d0d6a43e9a416460f35 /src/H5Dint.c | |
parent | 3f0b8817a166bac02ee6155544b950d9c4cdfbc3 (diff) | |
parent | cb6de06dcc18b31ab3f1d53bd93f0bbfaa0a17e1 (diff) | |
download | hdf5-db8b00865fdb76ce076d2032a0b27c5b012e9afc.zip hdf5-db8b00865fdb76ce076d2032a0b27c5b012e9afc.tar.gz hdf5-db8b00865fdb76ce076d2032a0b27c5b012e9afc.tar.bz2 |
Merge branch 'develop' into feature/vol_tools_tests
Diffstat (limited to 'src/H5Dint.c')
-rw-r--r-- | src/H5Dint.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/H5Dint.c b/src/H5Dint.c index 3f4ff72..b37d35c 100644 --- a/src/H5Dint.c +++ b/src/H5Dint.c @@ -191,8 +191,8 @@ H5D_init(void) HGOTO_ERROR(H5E_PLIST, H5E_CANTGET, FAIL, "can't retrieve pipeline filter"); /* Retrieve the prefixes of VDS and external file from the environment variable */ - H5D_prefix_vds_env = HDgetenv("HDF5_VDS_PREFIX"); - H5D_prefix_ext_env = HDgetenv("HDF5_EXTFILE_PREFIX"); + H5D_prefix_vds_env = getenv("HDF5_VDS_PREFIX"); + H5D_prefix_ext_env = getenv("HDF5_EXTFILE_PREFIX"); done: FUNC_LEAVE_NOAPI(ret_value) |