Removed an unsupported argument (-f)
git-svn-id: svn://10.0.0.236/trunk@50598 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
@@ -51,7 +51,6 @@ leaky::leaky()
|
||||
logFile = NULL;
|
||||
progFile = NULL;
|
||||
|
||||
sortByFrequency = FALSE;
|
||||
dumpLeaks = FALSE;
|
||||
dumpGraph = FALSE;
|
||||
dumpHTML = FALSE;
|
||||
@@ -109,7 +108,7 @@ void leaky::initialize(int argc, char** argv)
|
||||
|
||||
int arg;
|
||||
int errflg = 0;
|
||||
while ((arg = getopt(argc, argv, "adEe:fgh:i:r:Rs:tqx")) != -1) {
|
||||
while ((arg = getopt(argc, argv, "adEe:gh:i:r:Rs:tqx")) != -1) {
|
||||
switch (arg) {
|
||||
case '?':
|
||||
errflg++;
|
||||
@@ -130,9 +129,6 @@ void leaky::initialize(int argc, char** argv)
|
||||
case 'e':
|
||||
exclusions.add(optarg);
|
||||
break;
|
||||
case 'f':
|
||||
sortByFrequency = TRUE;
|
||||
break;
|
||||
case 'g':
|
||||
dumpGraph = TRUE;
|
||||
if (dumpLeaks) errflg++;
|
||||
|
||||
Reference in New Issue
Block a user