diff options
author | Max Kellermann <max@duempel.org> | 2008-08-29 09:38:11 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-08-29 09:38:11 +0200 |
commit | d0556dc9839627f899939e9419181a4ad9b2053d (patch) | |
tree | 5b444b608c281f57cb717d356f2fd52a5b0951da /src/audioOutputs | |
parent | f42de62aa23dc238a767a6fcf0e92fd2c5f3a8f3 (diff) | |
download | mpd-d0556dc9839627f899939e9419181a4ad9b2053d.tar.gz mpd-d0556dc9839627f899939e9419181a4ad9b2053d.tar.xz mpd-d0556dc9839627f899939e9419181a4ad9b2053d.zip |
tag: renamed MpdTag and MpdTagItem to struct tag, struct mpd_tag_item
Getting rid of CamelCase; not having typedefs also allows us to
forward-declare the structures.
Diffstat (limited to '')
-rw-r--r-- | src/audioOutputs/audioOutput_shout.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/audioOutputs/audioOutput_shout.c b/src/audioOutputs/audioOutput_shout.c index 49d69eebd..bf57a593f 100644 --- a/src/audioOutputs/audioOutput_shout.c +++ b/src/audioOutputs/audioOutput_shout.c @@ -56,7 +56,7 @@ typedef struct _ShoutData { int opened; - MpdTag *tag; + struct tag *tag; int tagToSend; int timeout; @@ -663,7 +663,7 @@ static int myShout_play(AudioOutput * audioOutput, return 0; } -static void myShout_setTag(AudioOutput * audioOutput, MpdTag * tag) +static void myShout_setTag(AudioOutput * audioOutput, struct tag *tag) { ShoutData *sd = (ShoutData *) audioOutput->data; |