diff options
author | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-12-15 09:24:49 +0100 |
---|---|---|
committer | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-12-15 09:24:49 +0100 |
commit | dca7aad8c609e205dd4bb793573fec966fdbfc31 (patch) | |
tree | 7e099146fd1bbbaab67316d91562c6272865480e /src | |
parent | 8cba2f6983736209def1c838dd53aa5e8c19ec4a (diff) | |
download | xine-lib-dca7aad8c609e205dd4bb793573fec966fdbfc31.tar.gz xine-lib-dca7aad8c609e205dd4bb793573fec966fdbfc31.tar.bz2 |
Fix wrongly-named function.
Thanks to Petri Hintukainen for reporting.
Diffstat (limited to 'src')
-rw-r--r-- | src/combined/flac_decoder.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/combined/flac_decoder.c b/src/combined/flac_decoder.c index cb7db0364..9ec024d71 100644 --- a/src/combined/flac_decoder.c +++ b/src/combined/flac_decoder.c @@ -388,7 +388,7 @@ init_plugin (xine_t *xine, void *data) { this->decoder_class.open_plugin = open_plugin; this->decoder_class.identifier = "flacdec"; this->decoder_class.description = N_("flac audio decoder plugin"); - this->decoder_class.dispose = default_audio_decoder_dispose; + this->decoder_class.dispose = default_audio_decoder_class_dispose; return this; |