From: Chris Lattner Date: Sun, 20 Sep 2009 07:16:54 +0000 (+0000) Subject: tidy up X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=fd40d038b32096d12af83b28e9ccd1ae3837356f;p=oota-llvm.git tidy up git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@82384 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Support/CommandLine.cpp b/lib/Support/CommandLine.cpp index 61b6cfe929e..43686c07cce 100644 --- a/lib/Support/CommandLine.cpp +++ b/lib/Support/CommandLine.cpp @@ -759,7 +759,7 @@ void cl::ParseCommandLineOptions(int argc, char **argv, // Free all the strdup()ed strings. for (std::vector::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