From 6d475c40de567d778fa6f96c379687a8bf83f82b Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Fri, 25 Oct 2013 19:09:22 +0200 Subject: ReplayGainInfo: use CamelCase for struct name --- src/DecoderThread.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/DecoderThread.cxx') 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); } -- cgit v1.2.3