"vscode:/vscode.git/clone" did not exist on "6871bffa79ed240696986837cfb17b272ff57466"
Commit 7bbb3600 authored by Christian Hesse's avatar Christian Hesse Committed by Hisham Muhammad
Browse files

fix option string

This broke with commit db05ba61.
parent 4092c90b
...@@ -93,7 +93,7 @@ static CommandLineSettings parseArguments(int argc, char** argv) { ...@@ -93,7 +93,7 @@ static CommandLineSettings parseArguments(int argc, char** argv) {
int opt, opti=0; int opt, opti=0;
/* Parse arguments */ /* Parse arguments */
while ((opt = getopt_long(argc, argv, "hvCst::d:u:p:i", long_opts, &opti))) { while ((opt = getopt_long(argc, argv, "hvCs:td:u:p:i", long_opts, &opti))) {
if (opt == EOF) break; if (opt == EOF) break;
switch (opt) { switch (opt) {
case 'h': case 'h':
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment