diff options
author | Max Kellermann <max@duempel.org> | 2008-11-11 15:55:34 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-11-11 15:55:34 +0100 |
commit | 114b3c1e78433ff3760a28641d6da3925ef8d3ce (patch) | |
tree | f92bc79eda01492741cf37a824d922c10758c1a2 /src/decoder/oggflac_plugin.c | |
parent | 54ad08ab378f9e988cc8289c0923e50047805b1f (diff) | |
download | mpd-114b3c1e78433ff3760a28641d6da3925ef8d3ce.tar.gz mpd-114b3c1e78433ff3760a28641d6da3925ef8d3ce.tar.xz mpd-114b3c1e78433ff3760a28641d6da3925ef8d3ce.zip |
replay_gain: no CamelCase
Renamed functions and variables.
Diffstat (limited to 'src/decoder/oggflac_plugin.c')
-rw-r--r-- | src/decoder/oggflac_plugin.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/decoder/oggflac_plugin.c b/src/decoder/oggflac_plugin.c index c117cf3d2..17770a2a7 100644 --- a/src/decoder/oggflac_plugin.c +++ b/src/decoder/oggflac_plugin.c @@ -31,7 +31,7 @@ static void oggflac_cleanup(FlacData * data, OggFLAC__SeekableStreamDecoder * decoder) { if (data->replayGainInfo) - freeReplayGainInfo(data->replayGainInfo); + replay_gain_info_free(data->replayGainInfo); if (decoder) OggFLAC__seekable_stream_decoder_delete(decoder); } |