Skip to content

Commit

Permalink
Fix conversion from 'double' to 'float' warning closes
Browse files Browse the repository at this point in the history
Closes #27
  • Loading branch information
JulienMaille authored Jun 9, 2020
1 parent 159874b commit efff86a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion _kiss_fft_guts.h
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ struct kiss_fft_state{
#else
# define KISS_FFT_COS(phase) (kiss_fft_scalar) cos(phase)
# define KISS_FFT_SIN(phase) (kiss_fft_scalar) sin(phase)
# define HALF_OF(x) ((x)*.5)
# define HALF_OF(x) ((x)*((kiss_fft_scalar).5))
#endif

#define kf_cexp(x,phase) \
Expand Down

0 comments on commit efff86a

Please sign in to comment.