From f7a2760c0c2cf784090cf5619a43532804ee079b Mon Sep 17 00:00:00 2001 From: Kevin Rosenberg Date: Sat, 8 Sep 2007 10:07:37 -0600 Subject: [PATCH] change \n to std:endl --- wdq2wav.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wdq2wav.cpp b/wdq2wav.cpp index bcfd3b6..b72d6fa 100644 --- a/wdq2wav.cpp +++ b/wdq2wav.cpp @@ -61,13 +61,13 @@ const int g_fileMode = S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH; void error_msg (const char *msg) { - std::cerr << msg << "\n"; + std::cerr << msg << std::endl; } void info_msg (const char* msg) { - std::cout << msg << "\n"; + std::cout << msg << std::endl; } void -- 2.34.1