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 | 78f908c877fb9e6a563842e752ec2c64ae2ac401 (patch) | |
tree | f9c98c009f0a06c18f64278553d8a7eb652b63d1 /llvm/lib/Support | |
parent | 22fc051bd72f459717b60c49a05acdb7f0af05f7 (diff) | |
download | bcm5719-llvm-78f908c877fb9e6a563842e752ec2c64ae2ac401.tar.gz bcm5719-llvm-78f908c877fb9e6a563842e752ec2c64ae2ac401.zip |
tidy up
llvm-svn: 82384
Diffstat (limited to 'llvm/lib/Support')
-rw-r--r-- | llvm/lib/Support/CommandLine.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Support/CommandLine.cpp b/llvm/lib/Support/CommandLine.cpp index 61b6cfe929e..43686c07cce 100644 --- a/llvm/lib/Support/CommandLine.cpp +++ b/llvm/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 |