diff options
Diffstat (limited to 'tools/misc')
-rw-r--r-- | tools/misc/h5mkgrp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/misc/h5mkgrp.c b/tools/misc/h5mkgrp.c index 6de00f7..fbb6163 100644 --- a/tools/misc/h5mkgrp.c +++ b/tools/misc/h5mkgrp.c @@ -234,7 +234,7 @@ main(int argc, const char *argv[]) /* Check for creating groups with new format version */ if(params.latest) { /* Set the "use the latest version of the format" bounds */ - if(H5Pset_format_bounds(fapl_id, H5F_FORMAT_LATEST, H5F_FORMAT_LATEST) < 0) { + if(H5Pset_libver_bounds(fapl_id, H5F_LIBVER_LATEST, H5F_LIBVER_LATEST) < 0) { error_msg(progname, "Could not set property for using latest version of the format\n"); leave(EXIT_FAILURE); } /* end if */ |