diff options
author | Lasse Collin <lasse.collin@tukaani.org> | 2007-12-13 20:14:37 +0200 |
---|---|---|
committer | Lasse Collin <lasse.collin@tukaani.org> | 2007-12-13 20:14:37 +0200 |
commit | 698470b8f33fc0e5f27dafa93b39b6dd5dde5a66 (patch) | |
tree | 30c37ec0ced663c1d8166efd86c0935f8b943f5f /src | |
parent | Removed uncompressed size tracking from Delta encoder too. (diff) | |
download | xz-698470b8f33fc0e5f27dafa93b39b6dd5dde5a66.tar.xz |
Fixed a few short options that take an argument.
short_opts[] was missing colons to indicate
required argument. Thanks to Fabio Pedretti for
the bug report.
Diffstat (limited to 'src')
-rw-r--r-- | src/lzma/args.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lzma/args.c b/src/lzma/args.c index d6163ae7..24fc0939 100644 --- a/src/lzma/args.c +++ b/src/lzma/args.c @@ -68,7 +68,7 @@ enum { }; -static const char short_opts[] = "cC:dfFhlLkqrStT:vVz123456789"; +static const char short_opts[] = "cC:dfF:hlLkM:qrS:tT:vVz123456789"; static const struct option long_opts[] = { |