diff options
author | Lasse Collin <lasse.collin@tukaani.org> | 2008-11-19 20:46:52 +0200 |
---|---|---|
committer | Lasse Collin <lasse.collin@tukaani.org> | 2008-11-19 20:46:52 +0200 |
commit | e114502b2bc371e4a45449832cb69be036360722 (patch) | |
tree | 449c41d0408f99926de202611091747f1fbe2f85 /debug/memusage.c | |
parent | Fixed the test that should have been fixed as part (diff) | |
download | xz-e114502b2bc371e4a45449832cb69be036360722.tar.xz |
Oh well, big messy commit again. Some highlights:
- Updated to the latest, probably final file format version.
- Command line tool reworked to not use threads anymore.
Threading will probably go into liblzma anyway.
- Memory usage limit is now about 30 % for uncompression
and about 90 % for compression.
- Progress indicator with --verbose
- Simplified --help and full --long-help
- Upgraded to the last LGPLv2.1+ getopt_long from gnulib.
- Some bug fixes
Diffstat (limited to 'debug/memusage.c')
-rw-r--r-- | debug/memusage.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/debug/memusage.c b/debug/memusage.c index 2dbb39e0..716dc8b5 100644 --- a/debug/memusage.c +++ b/debug/memusage.c @@ -26,7 +26,7 @@ main(void) lzma_init(); lzma_options_lzma lzma = { - .dict_size = (1U << 27) + (1U << 26), + .dict_size = (1U << 30) + (1U << 29), .lc = 3, .lp = 0, .pb = 2, |