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:
Marian Buschsieweke 2020-05-26 14:16:00 +02:00 committed by Simon Ser
parent 4cd31295cf
commit 1e92d603a8
1 changed files with 2 additions and 2 deletions

View File

@ -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' },