diff options
Diffstat (limited to '')
-rw-r--r-- | src/DecoderThread.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/DecoderThread.cxx b/src/DecoderThread.cxx index 513fdb663..7de6bf0d3 100644 --- a/src/DecoderThread.cxx +++ b/src/DecoderThread.cxx @@ -274,8 +274,8 @@ decoder_run_stream(Decoder &decoder, const char *uri) static void decoder_load_replay_gain(Decoder &decoder, const char *path_fs) { - struct replay_gain_info info; - if (replay_gain_ape_read(path_fs, &info)) + ReplayGainInfo info; + if (replay_gain_ape_read(path_fs, info)) decoder_replay_gain(decoder, &info); } |