diff options
author | Max Kellermann <max@duempel.org> | 2008-10-26 20:56:46 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-10-26 20:56:46 +0100 |
commit | 5c19776f2fc1416dab1da2f2baae9a0c764df965 (patch) | |
tree | 828f8f768be17f053e12fc38f2a7593e0a9b77b5 /src/decoder/ffmpeg_plugin.c | |
parent | 464b6117721056e72c79824a298caf53eb5cd452 (diff) | |
download | mpd-5c19776f2fc1416dab1da2f2baae9a0c764df965.tar.gz mpd-5c19776f2fc1416dab1da2f2baae9a0c764df965.tar.xz mpd-5c19776f2fc1416dab1da2f2baae9a0c764df965.zip |
input_stream: use "bool" instead of "int"
For boolean values and success flags, use bool instead of integer (1/0
for true/false, 0/-1 for success/failure).
Diffstat (limited to '')
-rw-r--r-- | src/decoder/ffmpeg_plugin.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/decoder/ffmpeg_plugin.c b/src/decoder/ffmpeg_plugin.c index bc0ffe221..6de31d52a 100644 --- a/src/decoder/ffmpeg_plugin.c +++ b/src/decoder/ffmpeg_plugin.c @@ -360,7 +360,7 @@ static struct tag *ffmpeg_tag(char *file) int ret; struct tag *tag = NULL; - if (input_stream_open(&input, file) < 0) { + if (!input_stream_open(&input, file)) { ERROR("failed to open %s\n", file); return NULL; } |