From 48a04a820707051c05875ca4b33eb9a81f317cd9 Mon Sep 17 00:00:00 2001 From: Kostya Serebryany Date: Wed, 6 Dec 2017 22:12:24 +0000 Subject: [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 --- lib/fuzzer/FuzzerDriver.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib') 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 *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) -- cgit v1.2.3