diff options
Diffstat (limited to 'src/combined')
-rw-r--r-- | src/combined/decoder_flac.c | 2 | ||||
-rw-r--r-- | src/combined/decoder_wavpack.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/combined/decoder_flac.c b/src/combined/decoder_flac.c index 9b77cc27d..148f5e62c 100644 --- a/src/combined/decoder_flac.c +++ b/src/combined/decoder_flac.c @@ -259,7 +259,7 @@ flac_decode_data (audio_decoder_t *this_gen, buf_element_t *buf) if (!this->output_open) { - this->output_open = this->stream->audio_out->open ( + this->output_open = (this->stream->audio_out->open) ( this->stream->audio_out, this->stream, this->bits_per_sample, diff --git a/src/combined/decoder_wavpack.c b/src/combined/decoder_wavpack.c index ec14dfbf5..e036e3bf8 100644 --- a/src/combined/decoder_wavpack.c +++ b/src/combined/decoder_wavpack.c @@ -171,7 +171,7 @@ static void wavpack_decode_data (audio_decoder_t *const this_gen, buf_element_t if (!this->output_open) { - this->output_open = this->stream->audio_out->open ( + this->output_open = (this->stream->audio_out->open) ( this->stream->audio_out, this->stream, this->bits_per_sample, |