From b084bc28ede5d397e88a4e2bdad8c07a55069589 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Wed, 8 Oct 2008 11:03:39 +0200 Subject: use the "bool" data type instead of "int" "bool" should be used in C99 programs for boolean values. --- src/inputPlugins/oggvorbis_plugin.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/inputPlugins/oggvorbis_plugin.c') diff --git a/src/inputPlugins/oggvorbis_plugin.c b/src/inputPlugins/oggvorbis_plugin.c index a01556cb3..0e1d523b9 100644 --- a/src/inputPlugins/oggvorbis_plugin.c +++ b/src/inputPlugins/oggvorbis_plugin.c @@ -365,14 +365,14 @@ static struct tag *oggvorbis_TagDup(char *file) return ret; } -static unsigned int oggvorbis_try_decode(InputStream * inStream) +static bool oggvorbis_try_decode(InputStream * inStream) { if (!inStream->seekable) /* we cannot seek after the detection, so don't bother checking */ - return 1; + return true; - return (ogg_stream_type_detect(inStream) == VORBIS) ? 1 : 0; + return ogg_stream_type_detect(inStream) == VORBIS; } static const char *oggvorbis_Suffixes[] = { "ogg","oga", NULL }; -- cgit v1.2.3