diff --git a/Source/cmakemain.cxx b/Source/cmakemain.cxx index 69b5a1692f..b2d37cbca5 100644 --- a/Source/cmakemain.cxx +++ b/Source/cmakemain.cxx @@ -173,11 +173,11 @@ void cmakemainMessageCallback(const std::string& m, // cannot use it to print messages. Another implementation will // be needed to print colored messages on Windows. static_cast(md); - std::cerr << m << cmakemainGetStack(cm) << '\n' << std::flush; + std::cerr << m << cmakemainGetStack(cm) << std::endl; #else cmsysTerminal_cfprintf(md.desiredColor, stderr, "%s", m.c_str()); fflush(stderr); // stderr is buffered in some cases. - std::cerr << cmakemainGetStack(cm) << '\n' << std::flush; + std::cerr << cmakemainGetStack(cm) << std::endl; #endif }