# HG changeset patch # User Chris Cannam # Date 1553886971 0 # Node ID c9a15ee5dc1d51703c55e840d4b773c9cbbe9e30 # Parent 0d89abd631ac09bb5bc97e7f8f22197139cf0856 Fix error message which says the opposite of the truth diff -r 0d89abd631ac -r c9a15ee5dc1d data/model/FFTModel.cpp --- a/data/model/FFTModel.cpp Thu Mar 28 16:03:36 2019 +0000 +++ b/data/model/FFTModel.cpp Fri Mar 29 19:16:11 2019 +0000 @@ -55,8 +55,8 @@ if (m_windowSize > m_fftSize) { SVCERR << "ERROR: FFTModel::FFTModel: window size (" << m_windowSize - << ") must be at least FFT size (" << m_fftSize << ")" << endl; - throw invalid_argument("FFTModel window size must be at least FFT size"); + << ") may not exceed FFT size (" << m_fftSize << ")" << endl; + throw invalid_argument("FFTModel window size may not exceed FFT size"); } m_fft.initFloat();