From d562ba5fbbe117585eaade40a8e9c6ef1bf7ca1f Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Wed, 8 Oct 2008 10:49:11 +0200 Subject: song: converted typedef Song to struct song Again, a data type which can be forward-declared. --- src/decoder_control.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'src/decoder_control.c') diff --git a/src/decoder_control.c b/src/decoder_control.c index 58c4e75ee..3c83e7371 100644 --- a/src/decoder_control.c +++ b/src/decoder_control.c @@ -53,7 +53,8 @@ static void dc_command_async(enum decoder_command cmd) notify_signal(&dc.notify); } -void dc_start(Notify *notify, Song *song) +void +dc_start(Notify *notify, struct song *song) { assert(song != NULL); @@ -62,7 +63,8 @@ void dc_start(Notify *notify, Song *song) dc_command(notify, DECODE_COMMAND_START); } -void dc_start_async(Song *song) +void +dc_start_async(struct song *song) { assert(song != NULL); -- cgit v1.2.3