diff options
author | Allen Byrne <byrn@hdfgroup.org> | 2013-08-21 20:59:49 (GMT) |
---|---|---|
committer | Allen Byrne <byrn@hdfgroup.org> | 2013-08-21 20:59:49 (GMT) |
commit | 8c14af82c61f50146a6c5646c2320a08d09dc32d (patch) | |
tree | 7916e0f37752894768994143d6723a124db34561 /tools/h5repack/h5repack.c | |
parent | 6bc36a0c46a9864ae580ca43f00d3f4ec3e28147 (diff) | |
download | hdf5-8c14af82c61f50146a6c5646c2320a08d09dc32d.zip hdf5-8c14af82c61f50146a6c5646c2320a08d09dc32d.tar.gz hdf5-8c14af82c61f50146a6c5646c2320a08d09dc32d.tar.bz2 |
[svn-r24050] HDFFV-8498: --minimum option was disabled by HDFFV-8214. Reverted code change and changed default to 0 from 1024. Changed limit test to use h5dump to compare repacked file instead of h5diff.
Tested local linux with CMake
Diffstat (limited to 'tools/h5repack/h5repack.c')
-rw-r--r-- | tools/h5repack/h5repack.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/h5repack/h5repack.c b/tools/h5repack/h5repack.c index 38a000a..d6437cf 100644 --- a/tools/h5repack/h5repack.c +++ b/tools/h5repack/h5repack.c @@ -93,7 +93,7 @@ h5repack_init(pack_opt_t *options, int verbose, H5F_file_space_type_t strategy, int k, n; HDmemset(options, 0, sizeof(pack_opt_t)); - options->min_comp = 1024; + options->min_comp = 0; options->verbose = verbose; options->layout_g = H5D_LAYOUT_ERROR; |