Skip to content

Commit

Permalink
xzdec: Remove unused short option -M
Browse files Browse the repository at this point in the history
"xzdec -M123" exited with exit status 1 without printing
any messages. The "M:" entry should have been removed when
the memory usage limiter support was removed from xzdec.

Fixes: 792331b
Closes: #143
[ Lasse: Commit message edits ]
  • Loading branch information
stoeckmann authored and Larhzu committed Sep 16, 2024
1 parent e5758db commit 78355ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/xzdec/xzdec.c
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ version(void)
static void
parse_options(int argc, char **argv)
{
static const char short_opts[] = "cdkM:hqQV";
static const char short_opts[] = "cdkhqQV";
static const struct option long_opts[] = {
{ "stdout", no_argument, NULL, 'c' },
{ "to-stdout", no_argument, NULL, 'c' },
Expand Down

0 comments on commit 78355ae

Please sign in to comment.