mirror of
https://github.com/swaywm/sway.git
synced 2024-11-10 20:44:01 +01:00
Removed p as a valid CLI option
The get-socketpath long option had an undocumented short alternative as `p`. It has been removed. However, the code in the options array is still the 'p' char.
This commit is contained in:
parent
28c8e4fb9e
commit
179192e222
@ -103,7 +103,7 @@ int main(int argc, char **argv) {
|
||||
int c;
|
||||
while (1) {
|
||||
int option_index = 0;
|
||||
c = getopt_long(argc, argv, "hCdvVpc:", long_options, &option_index);
|
||||
c = getopt_long(argc, argv, "hCdvVc:", long_options, &option_index);
|
||||
if (c == -1) {
|
||||
break;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user