FFTW engine: corrected debug print format

This commit is contained in:
f4exb 2020-04-19 19:19:31 +02:00
parent 3034dcddce
commit f08c7ee460
1 changed files with 1 additions and 1 deletions

View File

@ -72,7 +72,7 @@ void FFTWEngine::configure(int n, bool inverse)
m_currentPlan->plan = fftwf_plan_dft_1d(n, m_currentPlan->in, m_currentPlan->out, inverse ? FFTW_BACKWARD : FFTW_FORWARD, FFTW_PATIENT);
m_globalPlanMutex.unlock();
qDebug("FFT: creating FFTW plan (n=%d,%s) took %dms", n, inverse ? "inverse" : "forward", t.elapsed());
qDebug("FFT: creating FFTW plan (n=%d,%s) took %lld ms", n, inverse ? "inverse" : "forward", t.elapsed());
m_plans.push_back(m_currentPlan);
}