aboutsummaryrefslogtreecommitdiffstats
path: root/src/inputPlugins/_flac_common.c
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2008-08-29 09:38:11 +0200
committerEric Wong <normalperson@yhbt.net>2008-09-02 00:05:35 -0700
commit8ae390f65142ed38a0b5e2474fc6a21866092e84 (patch)
treecd044479302be57d4f73683e6844d782d5c836e3 /src/inputPlugins/_flac_common.c
parentdd7f8a723efa9c9edce951981aef7f3adf814134 (diff)
downloadmpd-8ae390f65142ed38a0b5e2474fc6a21866092e84.tar.gz
mpd-8ae390f65142ed38a0b5e2474fc6a21866092e84.tar.xz
mpd-8ae390f65142ed38a0b5e2474fc6a21866092e84.zip
tag: renamed MpdTag and MpdTagItem to struct mpd_tag, struct tag_item
Getting rid of CamelCase; not having typedefs also allows us to forward-declare the structures.
Diffstat (limited to '')
-rw-r--r--src/inputPlugins/_flac_common.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/inputPlugins/_flac_common.c b/src/inputPlugins/_flac_common.c
index 6890c7c50..6307af00d 100644
--- a/src/inputPlugins/_flac_common.c
+++ b/src/inputPlugins/_flac_common.c
@@ -101,7 +101,7 @@ static const char *VORBIS_COMMENT_DISC_KEY = "discnumber";
static unsigned int commentMatchesAddToTag(const
FLAC__StreamMetadata_VorbisComment_Entry
* entry, unsigned int itemType,
- MpdTag ** tag)
+ struct mpd_tag ** tag)
{
const char *str;
size_t slen;
@@ -134,8 +134,8 @@ static unsigned int commentMatchesAddToTag(const
return 0;
}
-MpdTag *copyVorbisCommentBlockToMpdTag(const FLAC__StreamMetadata * block,
- MpdTag * tag)
+struct mpd_tag *copyVorbisCommentBlockToMpdTag(const FLAC__StreamMetadata * block,
+ struct mpd_tag * tag)
{
unsigned int i, j;
FLAC__StreamMetadata_VorbisComment_Entry *comments;