Skip to content

Commit

Permalink
fix(kissfft.hh): explicit conversion const size_t <-> const int
Browse files Browse the repository at this point in the history
  • Loading branch information
ebragge committed May 9, 2016
1 parent 780054e commit e534db1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kiss_fft130/kissfft.hh
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ class kissfft
int twidx=0;
Fout[ k ] = scratchbuf[0];
for (q=1;q<p;++q ) {
twidx += fstride * k;
twidx += (const int)fstride * k;
if (twidx>=Norig) twidx-=Norig;
C_MUL(t,scratchbuf[q] , twiddles[twidx] );
C_ADDTO( Fout[ k ] ,t);
Expand Down

0 comments on commit e534db1

Please sign in to comment.