Fixed a harmless type error.

git-svn-id: http://voip.null.ro/svn/yate@5000 acf43c95-373e-0410-b603-e72c3f656dc1
This commit is contained in:
paulc 2012-04-06 15:52:25 +00:00
parent 962647b836
commit 6d69e3d37b
1 changed files with 1 additions and 1 deletions

View File

@ -409,7 +409,7 @@ void AsyncFFT::compute()
AnalyzerCons::AnalyzerCons(const String& type, const char* window)
: m_timeStart(0), m_tsStart(0), m_tsGapCount(0), m_tsGapLength(0),
m_spectrum(false), m_total(0), m_valid(0), m_analyze(false)
m_spectrum(0), m_total(0), m_valid(0), m_analyze(false)
{
DDebug(&__plugin,DebugAll,"AnalyzerCons::AnalyzerCons('%s') [%p]",
type.c_str(),this);