src/libFLAC/window.c : Add 'f' to float literals to avoid compiler warnings.

Patch-from: lvqcl <lvqcl.mail@gmail.com>
This commit is contained in:
Erik de Castro Lopo 2014-10-03 06:50:27 +10:00
parent d66f6754bf
commit 347afd878c

View File

@ -215,7 +215,7 @@ void FLAC__window_partial_tukey(FLAC__real *window, const FLAC__int32 L, const F
FLAC__int32 Np, n, i;
if (p <= 0.0)
FLAC__window_partial_tukey(window, L, 0.01, start, end);
FLAC__window_partial_tukey(window, L, 0.01f, start, end);
else if (p >= 1.0)
FLAC__window_partial_tukey(window, L, 1, start, end);
@ -240,7 +240,7 @@ void FLAC__window_punchout_tukey(FLAC__real *window, const FLAC__int32 L, const
FLAC__int32 Ns, Ne, n, i;
if (p <= 0.0)
FLAC__window_partial_tukey(window, L, 0.01, start, end);
FLAC__window_partial_tukey(window, L, 0.01f, start, end);
else if (p >= 1.0)
FLAC__window_partial_tukey(window, L, 1, start, end);