mirror of
https://github.com/hyprwm/xdg-desktop-portal-hyprland.git
synced 2024-11-22 14:35:57 +01:00
core/main: Clean up option handling
- Add a missing space in the usage string - Drop short option "p", which is unused
This commit is contained in:
parent
4cd31295cf
commit
1e92d603a8
1 changed files with 2 additions and 2 deletions
|
@ -35,7 +35,7 @@ int main(int argc, char *argv[]) {
|
|||
const char* output_name = NULL;
|
||||
enum LOGLEVEL loglevel = ERROR;
|
||||
|
||||
static const char* shortopts = "l:o:p:h";
|
||||
static const char* shortopts = "l:o:h";
|
||||
static const struct option longopts[] = {
|
||||
{ "loglevel", required_argument, NULL, 'l' },
|
||||
{ "output", required_argument, NULL, 'o' },
|
||||
|
|
Loading…
Reference in a new issue