From cfcac15f030734eca087e0116e1ca5813da50f50 Mon Sep 17 00:00:00 2001 From: kmu Date: Wed, 29 Jan 2020 13:43:31 -0600 Subject: fix bad function cast warning --- tools/src/h5repack/h5repack_main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/src/h5repack/h5repack_main.c b/tools/src/h5repack/h5repack_main.c index c0c8a2a..947cb06 100644 --- a/tools/src/h5repack/h5repack_main.c +++ b/tools/src/h5repack/h5repack_main.c @@ -492,7 +492,7 @@ int parse_command_line(int argc, const char **argv, pack_opt_t* options) break; case 'j': - options->low_bound = (H5F_libver_t)HDatoi(opt_arg); + options->low_bound = HDatoi(opt_arg); if (options->low_bound < H5F_LIBVER_EARLIEST || options->low_bound > H5F_LIBVER_LATEST) { error_msg("in parsing low bound\n"); goto done; @@ -500,7 +500,7 @@ int parse_command_line(int argc, const char **argv, pack_opt_t* options) break; case 'k': - options->high_bound = (H5F_libver_t)HDatoi(opt_arg); + options->high_bound = HDatoi(opt_arg); if (options->high_bound < H5F_LIBVER_EARLIEST || options->high_bound > H5F_LIBVER_LATEST) { error_msg("in parsing high bound\n"); goto done; -- cgit v0.12