[llvm-commits] [llvm] r82384 - /llvm/trunk/lib/Support/CommandLine.cpp
Chris Lattner
sabre at nondot.org
Sun Sep 20 00:16:55 PDT 2009
Author: lattner
Date: Sun Sep 20 02:16:54 2009
New Revision: 82384
URL: http://llvm.org/viewvc/llvm-project?rev=82384&view=rev
Log:
tidy up
Modified:
llvm/trunk/lib/Support/CommandLine.cpp
Modified: llvm/trunk/lib/Support/CommandLine.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Support/CommandLine.cpp?rev=82384&r1=82383&r2=82384&view=diff
==============================================================================
--- llvm/trunk/lib/Support/CommandLine.cpp (original)
+++ llvm/trunk/lib/Support/CommandLine.cpp Sun Sep 20 02:16:54 2009
@@ -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
More information about the llvm-commits
mailing list