summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--tools/h5repack/h5repack.c2
-rw-r--r--tools/h5repack/h5repack_list.c3
-rw-r--r--tools/h5repack/h5repack_main.c4
3 files changed, 4 insertions, 5 deletions
diff --git a/tools/h5repack/h5repack.c b/tools/h5repack/h5repack.c
index afd8efa..f980e3e 100644
--- a/tools/h5repack/h5repack.c
+++ b/tools/h5repack/h5repack.c
@@ -119,7 +119,7 @@ int h5repack_end (pack_opt_t *options)
* Function: h5repack_addfilter
*
* Purpose: add a compression -f option to table
- * Example: -f "dset:GZIP=6"
+ * Example: -f dset:GZIP=6
*
* Return: 0, ok, -1, fail
*
diff --git a/tools/h5repack/h5repack_list.c b/tools/h5repack/h5repack_list.c
index f28ff9e..74e79a4 100644
--- a/tools/h5repack/h5repack_list.c
+++ b/tools/h5repack/h5repack_list.c
@@ -76,7 +76,10 @@ int check_objects(const char* fname,
*/
if (options->verbose)
+ {
+ printf("\n");
printf("Opening file <%s>. Searching for objects to modify...\n",fname);
+ }
for ( i = 0; i < options->op_tbl->nelems; i++)
{
diff --git a/tools/h5repack/h5repack_main.c b/tools/h5repack/h5repack_main.c
index 05a9c1e..8056fcc 100644
--- a/tools/h5repack/h5repack_main.c
+++ b/tools/h5repack/h5repack_main.c
@@ -19,10 +19,6 @@ static void usage(void);
/*
h5repack main program
-
-Examples of use:
--v -i file1.h5 -o file2.h5 -f "dataset:GZIP 6" -l "dataset:CHUNK 2x2"
--v -i file1.h5 -o file2.h5 -f "GZIP 6"
*/
int main(int argc, char **argv)