diff options
author | Antonio Alvarez Feijoo <antonio.feijoo@suse.com> | 2024-01-09 09:05:50 +0100 |
---|---|---|
committer | Antonio Alvarez Feijoo <antonio.feijoo@suse.com> | 2024-01-09 09:05:50 +0100 |
commit | 7c0e0bbb6b13d70500da79ce0270ed6da09327a0 (patch) | |
tree | 7968ae13526f7b46645d501c6fcaadfa21d2b41a /src/analyze/analyze.c | |
parent | cocci: merge mfree.cocci and mfree_return.cocci (#30838) (diff) | |
download | systemd-7c0e0bbb6b13d70500da79ce0270ed6da09327a0.tar.xz systemd-7c0e0bbb6b13d70500da79ce0270ed6da09327a0.zip |
analyze: fix -q option
Follow-up to 52117f5af831a816c47ceebb83c8244ee93b72fe
Diffstat (limited to '')
-rw-r--r-- | src/analyze/analyze.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/analyze/analyze.c b/src/analyze/analyze.c index 6edc412e75..5f4d663458 100644 --- a/src/analyze/analyze.c +++ b/src/analyze/analyze.c @@ -362,7 +362,7 @@ static int parse_argv(int argc, char *argv[]) { assert(argc >= 0); assert(argv); - while ((c = getopt_long(argc, argv, "hH:M:U:", options, NULL)) >= 0) + while ((c = getopt_long(argc, argv, "hH:M:U:q", options, NULL)) >= 0) switch (c) { case 'h': |