summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorPedro Vicente Nunes <pvn@hdfgroup.org>2004-04-06 18:30:30 (GMT)
committerPedro Vicente Nunes <pvn@hdfgroup.org>2004-04-06 18:30:30 (GMT)
commit45878f9a8adac2d93c8a6ba42e09fff043d41adb (patch)
tree514ef450cf36168b6d7283473a73f11928f839fd /tools
parentfde9bbabc4c2c74bb127ee1a1d29ef70e4dcbf74 (diff)
downloadhdf5-45878f9a8adac2d93c8a6ba42e09fff043d41adb.zip
hdf5-45878f9a8adac2d93c8a6ba42e09fff043d41adb.tar.gz
hdf5-45878f9a8adac2d93c8a6ba42e09fff043d41adb.tar.bz2
[svn-r8311] Purpose:
cleaned some comments and printfs Description: Solution: Platforms tested: linux Misc. update:
Diffstat (limited to 'tools')
-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)