🎨 Remove unneeded shortopts
This commit is contained in:
parent
bc6f8405fa
commit
d4b3eb94c0
1 changed files with 1 additions and 1 deletions
|
@ -35,7 +35,7 @@ struct arguments parseArguments(int argc, char *argv[]) {
|
||||||
//In this variable, getopt_long stores the current long option that was found. Unused since we don't use flags in our long options
|
//In this variable, getopt_long stores the current long option that was found. Unused since we don't use flags in our long options
|
||||||
int optionIndex = 0;
|
int optionIndex = 0;
|
||||||
|
|
||||||
int curOption = getopt_long_only(argc, argv, "d:o:s:k:p:t:", long_options, &optionIndex);
|
int curOption = getopt_long_only(argc, argv, "", long_options, &optionIndex);
|
||||||
|
|
||||||
//end of command line arguments reached
|
//end of command line arguments reached
|
||||||
if (curOption == -1) {
|
if (curOption == -1) {
|
||||||
|
|
Loading…
Reference in a new issue