From 1cccc54bc9f2ca9b577642188b6c8225b833796d Mon Sep 17 00:00:00 2001 From: James Peroulas Date: Tue, 21 Feb 2017 16:05:04 -0800 Subject: [PATCH] Fixed short command line options for ditdit and testtone. --- PiCW.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PiCW.cpp b/PiCW.cpp index 291ced9..5f1906b 100644 --- a/PiCW.cpp +++ b/PiCW.cpp @@ -532,7 +532,7 @@ void parse_commandline( while (1) { /* getopt_long stores the option index here. */ int option_index = 0; - int c = getopt_long (argc, argv, "hf:w:p:s", + int c = getopt_long (argc, argv, "hf:w:p:sdt", long_options, &option_index); if (c == -1) break;