diff options
author | Chris Lattner <sabre@nondot.org> | 2009-09-20 07:16:54 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-09-20 07:16:54 +0000 |
commit | fd40d038b32096d12af83b28e9ccd1ae3837356f (patch) | |
tree | da19a31e8e79256f5e770b63a4a6e27acc26375b /lib/Support/CommandLine.cpp | |
parent | 04d7eed1d53c7a374dc033aa4f1055d9db574c66 (diff) |
tidy up
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@82384 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Support/CommandLine.cpp')
-rw-r--r-- | lib/Support/CommandLine.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Support/CommandLine.cpp b/lib/Support/CommandLine.cpp index 61b6cfe929..43686c07cc 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<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 |