diff options
author | Dana Robinson <derobins@hdfgroup.org> | 2020-03-31 23:58:24 (GMT) |
---|---|---|
committer | Dana Robinson <derobins@hdfgroup.org> | 2020-03-31 23:58:24 (GMT) |
commit | b1533616f28996983ec505fff8f62edf3dd820b3 (patch) | |
tree | c57f30b3af4fafa27138a325ea15be031ccad167 /tools/libtest | |
parent | a46f31c2eb436e946639bb32518ce279507fa368 (diff) | |
download | hdf5-b1533616f28996983ec505fff8f62edf3dd820b3.zip hdf5-b1533616f28996983ec505fff8f62edf3dd820b3.tar.gz hdf5-b1533616f28996983ec505fff8f62edf3dd820b3.tar.bz2 |
Minor renaming in the tools code.
Diffstat (limited to 'tools/libtest')
-rw-r--r-- | tools/libtest/h5tools_test_utils.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/tools/libtest/h5tools_test_utils.c b/tools/libtest/h5tools_test_utils.c index 160e06f..2f9958b 100644 --- a/tools/libtest/h5tools_test_utils.c +++ b/tools/libtest/h5tools_test_utils.c @@ -1147,7 +1147,7 @@ test_set_configured_fapl(void) TESTING("programmatic fapl set"); for (i = 0; i < n_cases; i++) { - h5tools_get_fapl_info_t get_fapl_info; + h5tools_fapl_info_t fapl_info; hid_t result; testcase C = cases[i]; @@ -1170,10 +1170,10 @@ test_set_configured_fapl(void) #endif /* UTIL_TEST_DEBUG */ /* test */ - get_fapl_info.get_type = GET_VFD_BY_NAME; - get_fapl_info.info = C.conf_fa; - get_fapl_info.u.name = C.vfdname; - result = h5tools_get_fapl(H5P_DEFAULT, &get_fapl_info); + fapl_info.type = VFD_BY_NAME; + fapl_info.info = C.conf_fa; + fapl_info.u.name = C.vfdname; + result = h5tools_get_fapl(H5P_DEFAULT, &fapl_info); if (C.expected == 0) JSVERIFY( result, H5I_INVALID_HID, C.message) else |