From d4b3eb94c030c6e518aa3003b367ceab6e59c937 Mon Sep 17 00:00:00 2001 From: C-3PO Date: Sun, 21 Jul 2019 23:18:00 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=8E=A8=20Remove=20unneeded=20shortopts?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/parseArguments.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/parseArguments.c b/src/parseArguments.c index 2d8fe15..9a28c6b 100644 --- a/src/parseArguments.c +++ b/src/parseArguments.c @@ -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) {