🎨 Remove unneeded shortopts

This commit is contained in:
C-3PO 2019-07-21 23:18:00 +02:00
parent bc6f8405fa
commit d4b3eb94c0
Signed by: c3po
GPG key ID: 62993C4BB4D86F24

View file

@ -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
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
if (curOption == -1) {