diff options
Diffstat (limited to 'test/gen_new_group.c')
-rw-r--r-- | test/gen_new_group.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/gen_new_group.c b/test/gen_new_group.c index d1f04e0..6d16031 100644 --- a/test/gen_new_group.c +++ b/test/gen_new_group.c @@ -58,7 +58,7 @@ int main(void) if((fapl = H5Pcreate(H5P_FILE_ACCESS)) < 0) goto error; /* Set the "use the latest version of the format" bounds for creating objects in the file */ - if(H5Pset_format_bounds(fapl, H5F_FORMAT_LATEST, H5F_FORMAT_LATEST) < 0) goto error; + if(H5Pset_libver_bounds(fapl, H5F_LIBVER_LATEST, H5F_LIBVER_LATEST) < 0) goto error; /* Create file for test groups */ if((fid = H5Fcreate(FILENAME, H5F_ACC_TRUNC, fcpl, fapl)) <0) goto error; |