mute-console: remove unimplemented option

```
$ build/systemd-mute-console -q
Code should not be reached at src/mute-console/mute-console.c:103, function parse_argv(). Aborting. 💥
Aborted (core dumped)
```
This commit is contained in:
Antonio Alvarez Feijoo
2025-10-06 12:42:27 +02:00
committed by Lennart Poettering
parent f0a1b3c183
commit 13abd21c9f

View File

@@ -72,7 +72,7 @@ static int parse_argv(int argc, char *argv[]) {
assert(argc >= 0);
assert(argv);
while ((c = getopt_long(argc, argv, "hq", options, NULL)) >= 0) {
while ((c = getopt_long(argc, argv, "h", options, NULL)) >= 0) {
switch (c) {