summaryrefslogtreecommitdiff
path: root/libs/qm-dsp/dsp/segmentation/Segmenter.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'libs/qm-dsp/dsp/segmentation/Segmenter.cpp')
-rw-r--r--libs/qm-dsp/dsp/segmentation/Segmenter.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/qm-dsp/dsp/segmentation/Segmenter.cpp b/libs/qm-dsp/dsp/segmentation/Segmenter.cpp
index 538eaacc78..120a6617f5 100644
--- a/libs/qm-dsp/dsp/segmentation/Segmenter.cpp
+++ b/libs/qm-dsp/dsp/segmentation/Segmenter.cpp
@@ -23,7 +23,7 @@ ostream& operator<<(ostream& os, const Segmentation& s)
for (int i = 0; i < s.segments.size(); i++)
{
Segment seg = s.segments[i];
- os << std::fixed << seg.type << ':' << '\t' << std::setprecision(6) << seg.start / static_cast<double>(s.samplerate)
+ os << std::fixed << seg.type << ':' << '\t' << std::setprecision(6) << seg.start / static_cast<double>(s.samplerate)
<< '\t' << std::setprecision(6) << seg.end / static_cast<double>(s.samplerate) << "\n";
}