# HG changeset patch # User Chris Cannam # Date 1417777730 0 # Node ID 9d706d314e080b8a075e635b4821ec883fab327a # Parent f01e5707b8044f37d0f0f9811e0567f8ebf43a44 Print to stdout, not stderr diff -r f01e5707b804 -r 9d706d314e08 chordextract.cpp --- a/chordextract.cpp Fri Dec 05 10:46:04 2014 +0000 +++ b/chordextract.cpp Fri Dec 05 11:08:50 2014 +0000 @@ -137,7 +137,7 @@ fs[chordFeatureNo].end()); for (int i = 0; i < (int)chordFeatures.size(); ++i) { - cerr << chordFeatures[i].timestamp.toString() << ": " + cout << chordFeatures[i].timestamp.toString() << ": " << chordFeatures[i].label << endl; }