diff options
author | Max Kellermann <max@duempel.org> | 2008-08-26 08:27:09 +0200 |
---|---|---|
committer | Eric Wong <normalperson@yhbt.net> | 2008-08-30 18:36:18 -0700 |
commit | 29eba419627437fb6f20714bb553d39a58305c5e (patch) | |
tree | 88e8987dfc3582cfff15d76637cf63716d7237eb /src/audioOutputs | |
parent | 554c708450dd5008c310902f67702b9727b944d3 (diff) | |
download | mpd-29eba419627437fb6f20714bb553d39a58305c5e.tar.gz mpd-29eba419627437fb6f20714bb553d39a58305c5e.tar.xz mpd-29eba419627437fb6f20714bb553d39a58305c5e.zip |
converted MpdTagItem.type to an enum
Don't use CPP macros when you can use C enum... this also allows
better type checking.
Diffstat (limited to 'src/audioOutputs')
-rw-r--r-- | src/audioOutputs/audioOutput_shout.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/audioOutputs/audioOutput_shout.c b/src/audioOutputs/audioOutput_shout.c index 9ed5b4e7e..49d69eebd 100644 --- a/src/audioOutputs/audioOutput_shout.c +++ b/src/audioOutputs/audioOutput_shout.c @@ -413,6 +413,8 @@ static void copyTagToVorbisComment(ShoutData * sd) case TAG_ITEM_TITLE: addTag(sd, "TITLE", sd->tag->items[i].value); break; + default: + break; } } } |