From daef48e05d157536eae2c480abbe093beda6a732 Mon Sep 17 00:00:00 2001 From: Josh Coalson Date: Fri, 10 Sep 2004 00:39:16 +0000 Subject: [PATCH] minor comments --- src/share/replaygain_synthesis/replaygain_synthesis.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/share/replaygain_synthesis/replaygain_synthesis.c b/src/share/replaygain_synthesis/replaygain_synthesis.c index 86640be..30cf11e 100644 --- a/src/share/replaygain_synthesis/replaygain_synthesis.c +++ b/src/share/replaygain_synthesis/replaygain_synthesis.c @@ -291,7 +291,7 @@ static FLAC__INLINE FLAC__int64 dither_output_(DitherContext *d, FLAC__bool do_d dB = 20. * log10(scale); *track_gain = (float) dB; - const double scale = (float) pow(10., (double)gain * 0.05); /*@@@@ why downcast pow() output to float? */ + const double scale = pow(10., (double)gain * 0.05); #endif -- 2.7.4