mirror of
https://github.com/cage-kiosk/cage.git
synced 2025-10-29 05:40:19 -04:00
Fix getopt("D")
This commit is contained in:
parent
19157d3564
commit
360e259ca5
1 changed files with 1 additions and 1 deletions
2
cage.c
2
cage.c
|
|
@ -242,7 +242,7 @@ static bool
|
||||||
parse_args(struct cg_server *server, int argc, char *argv[])
|
parse_args(struct cg_server *server, int argc, char *argv[])
|
||||||
{
|
{
|
||||||
int c;
|
int c;
|
||||||
while ((c = getopt(argc, argv, "dhm:sv")) != -1) {
|
while ((c = getopt(argc, argv, "dDhm:sv")) != -1) {
|
||||||
switch (c) {
|
switch (c) {
|
||||||
case 'd':
|
case 'd':
|
||||||
server->xdg_decoration = true;
|
server->xdg_decoration = true;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue