diff options
Diffstat (limited to 'test/tmisc.c')
-rw-r--r-- | test/tmisc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/tmisc.c b/test/tmisc.c index df950ea..cc4e5ec 100644 --- a/test/tmisc.c +++ b/test/tmisc.c @@ -4601,8 +4601,8 @@ test_misc25c(void) /* Compose file access property list */ fapl = H5Pcreate(H5P_FILE_ACCESS); CHECK(fapl, FAIL, "H5Pcreate"); - ret = H5Pset_latest_format(fapl, 1); - CHECK(ret, FAIL, "H5Pset_latest_format"); + ret = H5Pset_format_bounds(fapl, H5F_FORMAT_LATEST, H5F_FORMAT_LATEST); + CHECK(ret, FAIL, "H5Pset_format_bounds"); /* Create the file */ fid = H5Fcreate(MISC25C_FILE, H5F_ACC_TRUNC, H5P_DEFAULT, fapl); |