Skip to content

Commit

Permalink
Fix getopt("D")
Browse files Browse the repository at this point in the history
  • Loading branch information
horror-proton authored and emersion committed Dec 23, 2024
1 parent 19157d3 commit 360e259
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cage.c
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ static bool
parse_args(struct cg_server *server, int argc, char *argv[])
{
int c;
while ((c = getopt(argc, argv, "dhm:sv")) != -1) {
while ((c = getopt(argc, argv, "dDhm:sv")) != -1) {
switch (c) {
case 'd':
server->xdg_decoration = true;
Expand Down

0 comments on commit 360e259

Please sign in to comment.