Output formatting improvement
authorKevin M. Rosenberg <kevin@rosenberg.net>
Sat, 5 Oct 2013 21:27:24 +0000 (15:27 -0600)
committerKevin M. Rosenberg <kevin@rosenberg.net>
Sat, 5 Oct 2013 21:27:24 +0000 (15:27 -0600)
wdq2wav.cpp

index ad977f2f4c5fc57d60556fdec9dff89914d6540b..2ea87bf9ce0af8c94e7dc8b9e3e246f2196b3cd9 100644 (file)
@@ -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 <<