Allow `getopt_long` call to manage the `-m` option (short of `--screen`).

This commit is contained in:
Aire-One 2019-09-30 15:53:21 +02:00
parent a02ea4450b
commit 4b66bb935c
1 changed files with 1 additions and 1 deletions

View File

@ -621,7 +621,7 @@ main(int argc, char **argv)
setlocale(LC_CTYPE, "");
/* check args */
while((opt = getopt_long(argc, argv, "vhkc:ar",
while((opt = getopt_long(argc, argv, "vhkc:arm:",
long_options, NULL)) != -1)
switch(opt)
{