summaryrefslogtreecommitdiffstats
path: root/tools/h5repack/h5repack.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2012-03-29 10:49:38 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2012-03-29 10:49:38 (GMT)
commita3dcbef52b3cd8407ac57f148ded89eb2f4fdecb (patch)
tree6fd51971d513083394b67d2d17b2fdee8aa49187 /tools/h5repack/h5repack.c
parente13eb463e03e978a203f77cbaf8bc504e05b28f3 (diff)
downloadhdf5-a3dcbef52b3cd8407ac57f148ded89eb2f4fdecb.zip
hdf5-a3dcbef52b3cd8407ac57f148ded89eb2f4fdecb.tar.gz
hdf5-a3dcbef52b3cd8407ac57f148ded89eb2f4fdecb.tar.bz2
[svn-r22180] Description:
Add new "metadata block size" command line option ('-M <x>' or '--metadata_block_size=<x>') for h5repack. Tested on: Mac OSX/64 10.7.3 (amazon) w/debug) (h5committest upcoming)
Diffstat (limited to 'tools/h5repack/h5repack.c')
-rw-r--r--tools/h5repack/h5repack.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/tools/h5repack/h5repack.c b/tools/h5repack/h5repack.c
index 28d66c5..9778fdd 100644
--- a/tools/h5repack/h5repack.c
+++ b/tools/h5repack/h5repack.c
@@ -87,10 +87,12 @@ int h5repack(const char* infile,
*/
int
-h5repack_init(pack_opt_t *options, int verbose, H5F_file_space_type_t strategy, hsize_t threshold)
+h5repack_init(pack_opt_t *options, int verbose, H5F_file_space_type_t strategy,
+ hsize_t threshold)
{
int k, n;
- HDmemset(options,0,sizeof(pack_opt_t));
+
+ HDmemset(options, 0, sizeof(pack_opt_t));
options->min_comp = 1024;
options->verbose = verbose;