From 22a862f28719d2838c0a5745a8ae36724b579e7f Mon Sep 17 00:00:00 2001 From: Bob van Loosen Date: Thu, 20 Dec 2012 17:14:51 +0100 Subject: [PATCH] fixed: typo --- src/fft.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fft.cpp b/src/fft.cpp index 01ab8ff..15c24bc 100644 --- a/src/fft.cpp +++ b/src/fft.cpp @@ -59,7 +59,7 @@ void Cfft::Allocate(unsigned int size) Log("Building fft plan"); int64_t start = GetTimeUs(); m_plan = fftwf_plan_dft_r2c_1d(m_bufsize, m_fftin, m_outbuf, FFTW_MEASURE); - Log("Build fft plan in %.0f ms", (double)(GetTimeUs() - start) / 1000.0f); + Log("Built fft plan in %.0f ms", (double)(GetTimeUs() - start) / 1000.0f); } }