test: fix double promotion
Signed-off-by: Rosen Penev <rosenp@gmail.com>
This commit is contained in:
parent
c7144ed5c7
commit
a5b136c420
|
@ -121,7 +121,7 @@ DumpReplayGainTuple(const char *name, const ReplayGainTuple &tuple) noexcept
|
||||||
{
|
{
|
||||||
if (tuple.IsDefined())
|
if (tuple.IsDefined())
|
||||||
fprintf(stderr, "replay_gain[%s]: gain=%f peak=%f\n",
|
fprintf(stderr, "replay_gain[%s]: gain=%f peak=%f\n",
|
||||||
name, tuple.gain, tuple.peak);
|
name, (double)tuple.gain, (double)tuple.peak);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
|
|
Loading…
Reference in New Issue