tidy up
authorChris Lattner <sabre@nondot.org>
Sun, 20 Sep 2009 07:16:54 +0000 (07:16 +0000)
committerChris Lattner <sabre@nondot.org>
Sun, 20 Sep 2009 07:16:54 +0000 (07:16 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@82384 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Support/CommandLine.cpp

index 61b6cfe929e10d0e1354548336704d0448f16f0d..43686c07cced1cc7dcdb3018ae35f9d1c923f9f6 100644 (file)
@@ -759,7 +759,7 @@ void cl::ParseCommandLineOptions(int argc, char **argv,
     // Free all the strdup()ed strings.
     for (std::vector<char*>::iterator i = newArgv.begin(), e = newArgv.end();
          i != e; ++i)
-      free (*i);
+      free(*i);
   }
 
   // If we had an error processing our arguments, don't let the program execute