summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorScott Graham <scottmg@chromium.org>2013-05-17 20:28:14 (GMT)
committerScott Graham <scottmg@chromium.org>2013-05-17 20:28:14 (GMT)
commitf25980a11d951d38386bbde988ff7e981dfbd534 (patch)
tree02d73ae5bc7946b22a8509ebc7d019df9674d4a9
parent4b6087d4510fff408ef9d27bdab34468bfd9eaf0 (diff)
downloadNinja-f25980a11d951d38386bbde988ff7e981dfbd534.zip
Ninja-f25980a11d951d38386bbde988ff7e981dfbd534.tar.gz
Ninja-f25980a11d951d38386bbde988ff7e981dfbd534.tar.bz2
don't print output with extra newline
-rw-r--r--src/msvc_helper_main-win32.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/msvc_helper_main-win32.cc b/src/msvc_helper_main-win32.cc
index ef91450..647bb86 100644
--- a/src/msvc_helper_main-win32.cc
+++ b/src/msvc_helper_main-win32.cc
@@ -123,7 +123,7 @@ int MSVCHelperMain(int argc, char** argv) {
output = parser.Parse(output);
WriteDepFileOrDie(output_filename, parser);
}
- printf("%s\n", output.c_str());
+ printf("%s", output.c_str());
return exit_code;
}