mirror of
https://github.com/sfall-team/int2ssl.git
synced 2026-07-27 16:52:42 -07:00
Fixed non-working -c option in previous commit
This commit is contained in:
@@ -162,7 +162,7 @@ bool ProcessCommandLine(int argc, char* argv[])
|
||||
int c;
|
||||
int nIndentWidth;
|
||||
|
||||
while((c = getopt(argc, argv, "d1abes:")) != EOF)
|
||||
while((c = getopt(argc, argv, "d1abes:c")) != EOF)
|
||||
{
|
||||
switch (c)
|
||||
{
|
||||
@@ -207,6 +207,7 @@ bool ProcessCommandLine(int argc, char* argv[])
|
||||
g_strIndentFill += " ";
|
||||
}
|
||||
break;
|
||||
|
||||
case 'c':
|
||||
useOldShortCircuit = true;
|
||||
break;
|
||||
|
||||
Reference in New Issue
Block a user