summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorKostya Serebryany <kcc@google.com>2017-12-06 22:12:24 +0000
committerKostya Serebryany <kcc@google.com>2017-12-06 22:12:24 +0000
commit48a04a820707051c05875ca4b33eb9a81f317cd9 (patch)
tree2ecc00818926e90cc4034437ec0484ed5e540af0 /lib
parent2f6cd8dba8b7727abe37f8680dd6ad5a03b47158 (diff)
[libFuzzer] fix a minor regression in printing
git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@319975 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r--lib/fuzzer/FuzzerDriver.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/fuzzer/FuzzerDriver.cpp b/lib/fuzzer/FuzzerDriver.cpp
index 41eb50e0e..f6b642dae 100644
--- a/lib/fuzzer/FuzzerDriver.cpp
+++ b/lib/fuzzer/FuzzerDriver.cpp
@@ -218,7 +218,7 @@ static void WorkerThread(const Command &BaseCmd, std::atomic<unsigned> *Counter,
Cmd.combineOutAndErr();
if (Flags.verbosity) {
std::string CommandLine = Cmd.toString();
- Printf("%s", CommandLine.c_str());
+ Printf("%s\n", CommandLine.c_str());
}
int ExitCode = ExecuteCommand(Cmd);
if (ExitCode != 0)