From b8e06d414ac0dabb063e52a9caed495db67ef547 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Wed, 14 Jan 2009 22:51:11 +0100 Subject: oggvorbis: use bool Make ogg_parseCommentAddToTag() return bool instead of unsigned int. --- src/decoder/oggvorbis_plugin.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/decoder/oggvorbis_plugin.c b/src/decoder/oggvorbis_plugin.c index 285ad6d07..76e2e58ec 100644 --- a/src/decoder/oggvorbis_plugin.c +++ b/src/decoder/oggvorbis_plugin.c @@ -139,9 +139,9 @@ ogg_getReplayGainInfo(char **comments) static const char *VORBIS_COMMENT_TRACK_KEY = "tracknumber"; static const char *VORBIS_COMMENT_DISC_KEY = "discnumber"; -static unsigned int ogg_parseCommentAddToTag(char *comment, - unsigned int itemType, - struct tag ** tag) +static bool +ogg_parseCommentAddToTag(char *comment, unsigned int itemType, + struct tag ** tag) { const char *needle; unsigned int len; @@ -163,10 +163,10 @@ static unsigned int ogg_parseCommentAddToTag(char *comment, tag_add_item(*tag, itemType, comment + len + 1); - return 1; + return true; } - return 0; + return false; } static struct tag *oggCommentsParse(char **comments) -- cgit v1.2.3