commit | 78f908c877fb9e6a563842e752ec2c64ae2ac401 | [log] [tgz] |
---|---|---|
author | Chris Lattner <sabre@nondot.org> | Sun Sep 20 07:16:54 2009 +0000 |
committer | Chris Lattner <sabre@nondot.org> | Sun Sep 20 07:16:54 2009 +0000 |
tree | f9c98c009f0a06c18f64278553d8a7eb652b63d1 | |
parent | 22fc051bd72f459717b60c49a05acdb7f0af05f7 [diff] |
tidy up llvm-svn: 82384
diff --git a/llvm/lib/Support/CommandLine.cpp b/llvm/lib/Support/CommandLine.cpp index 61b6cfe..43686c0 100644 --- a/llvm/lib/Support/CommandLine.cpp +++ b/llvm/lib/Support/CommandLine.cpp
@@ -759,7 +759,7 @@ // 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