Skip to content

Commit

Permalink
bootctl: fix -q option
Browse files Browse the repository at this point in the history
Follow up to 14e6e44

(cherry picked from commit 4697ee9)
  • Loading branch information
aafeijoo-suse authored and bluca committed Nov 8, 2023
1 parent 7825357 commit 194e9ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/boot/bootctl.c
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ static int parse_argv(int argc, char *argv[]) {
assert(argc >= 0);
assert(argv);

while ((c = getopt_long(argc, argv, "hpxR", options, NULL)) >= 0)
while ((c = getopt_long(argc, argv, "hpxRq", options, NULL)) >= 0)
switch (c) {

case 'h':
Expand Down

0 comments on commit 194e9ab

Please sign in to comment.