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).
This commit is contained in:
Max Kellermann
2008-10-26 20:56:46 +01:00
parent 464b611772
commit 5c19776f2f
14 changed files with 55 additions and 49 deletions

View File

@@ -52,9 +52,8 @@ static flac_seek_status flacSeek(mpd_unused const flac_decoder * flacDec,
{
FlacData *data = (FlacData *) fdata;
if (input_stream_seek(data->inStream, offset, SEEK_SET) < 0) {
if (!input_stream_seek(data->inStream, offset, SEEK_SET))
return flac_seek_status_error;
}
return flac_seek_status_ok;
}