mirror of
https://github.com/mborgerding/kissfft.git
synced 2026-02-23 15:32:58 -05:00
Fixed -Wimplicit-float-conversion warnings
This commit is contained in:
@ -149,7 +149,7 @@ kiss_fastfir_cfg kiss_fastfir_alloc(
|
||||
FFTFWD(st->fftcfg,st->tmpbuf,st->fir_freq_resp);
|
||||
|
||||
/* TODO: this won't work for fixed point */
|
||||
scale = 1.0 / st->nfft;
|
||||
scale = 1.0f / st->nfft;
|
||||
|
||||
for ( i=0; i < st->n_freq_bins; ++i ) {
|
||||
#ifdef USE_SIMD
|
||||
|
||||
Reference in New Issue
Block a user