aboutsummaryrefslogtreecommitdiff
path: root/src/decoder/decoder_internal.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/decoder/decoder_internal.c')
-rw-r--r--src/decoder/decoder_internal.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/decoder/decoder_internal.c b/src/decoder/decoder_internal.c
index 3d62ea30..ae9f82bc 100644
--- a/src/decoder/decoder_internal.c
+++ b/src/decoder/decoder_internal.c
@@ -31,7 +31,7 @@
* one.
*/
static enum decoder_command
-need_chunks(struct decoder_control *dc, bool do_wait)
+need_chunks(DecoderControl *dc, bool do_wait)
{
if (dc->command == DECODE_COMMAND_STOP ||
dc->command == DECODE_COMMAND_SEEK)
@@ -49,7 +49,7 @@ need_chunks(struct decoder_control *dc, bool do_wait)
struct music_chunk *decoder_get_chunk(struct decoder *decoder)
{
- struct decoder_control *dc = decoder->dc;
+ DecoderControl *dc = decoder->dc;
struct music_chunk *chunk;
enum decoder_command cmd;