summaryrefslogtreecommitdiffstats
path: root/tools/h5repack/h5repack_main.c
diff options
context:
space:
mode:
Diffstat (limited to 'tools/h5repack/h5repack_main.c')
-rw-r--r--tools/h5repack/h5repack_main.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/h5repack/h5repack_main.c b/tools/h5repack/h5repack_main.c
index 127dc01..333a49a 100644
--- a/tools/h5repack/h5repack_main.c
+++ b/tools/h5repack/h5repack_main.c
@@ -16,6 +16,8 @@
#include <string.h>
#include "h5repack.h"
+const char *progname = "h5repack";
+int d_status = EXIT_SUCCESS;
static void usage(void);
/*-------------------------------------------------------------------------
@@ -108,7 +110,7 @@ int main(int argc, char **argv)
}
/* pack it */
- ret=h5repack(infile,outfile,&options);
+ ret=h5repack(infile,outfile,&options,argc,argv);
/* free tables */
h5repack_end(&options);