From: Kevin M. Rosenberg Date: Sat, 5 Oct 2013 21:27:24 +0000 (-0600) Subject: Output formatting improvement X-Git-Url: http://git.kpe.io/?p=wdq2wav.git;a=commitdiff_plain;h=c685afb2e6c30a8d010cc449fdb921e98dfccdfd Output formatting improvement --- diff --git a/wdq2wav.cpp b/wdq2wav.cpp index ad977f2..2ea87bf 100644 --- a/wdq2wav.cpp +++ b/wdq2wav.cpp @@ -256,7 +256,7 @@ wdq2wav (const char* wdq_fname, const int channel, const char *wav_fname, bool p std::ostringstream os3; time = wdq.m_time_acq_stop; tm = gmtime (&time); - os3 << "Time File Written: " << asctime(tm); + os3 << "Time File Written: " << asctime(tm); info_msg_sans_newline (os3.str().c_str()); std::ostringstream os4; os4 << "Samples: " << wdq.m_nSamples <<