diff options
author | Max Kellermann <max@duempel.org> | 2008-10-08 11:03:39 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-10-08 11:03:39 +0200 |
commit | b084bc28ede5d397e88a4e2bdad8c07a55069589 (patch) | |
tree | d61d58cc73ed7d591df05fee2f4a48682e8d9c8c /src/decoder_thread.c | |
parent | 71351160b1b6fd4203f27f9159ae39a476483e1a (diff) | |
download | mpd-b084bc28ede5d397e88a4e2bdad8c07a55069589.tar.gz mpd-b084bc28ede5d397e88a4e2bdad8c07a55069589.tar.xz mpd-b084bc28ede5d397e88a4e2bdad8c07a55069589.zip |
use the "bool" data type instead of "int"
"bool" should be used in C99 programs for boolean values.
Diffstat (limited to 'src/decoder_thread.c')
-rw-r--r-- | src/decoder_thread.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/decoder_thread.c b/src/decoder_thread.c index c5a2794cc..fd617a6ac 100644 --- a/src/decoder_thread.c +++ b/src/decoder_thread.c @@ -31,7 +31,7 @@ static void decodeStart(void) { struct decoder decoder; int ret; - int close_instream = 1; + bool close_instream = true; InputStream inStream; struct decoder_plugin *plugin = NULL; char path_max_fs[MPD_PATH_MAX]; @@ -53,7 +53,7 @@ static void decodeStart(void) goto stop_no_close; } - decoder.seeking = 0; + decoder.seeking = false; dc.state = DECODE_STATE_START; dc.command = DECODE_COMMAND_NONE; @@ -137,7 +137,7 @@ static void decodeStart(void) if (plugin->file_decode != NULL) { closeInputStream(&inStream); - close_instream = 0; + close_instream = false; decoder.plugin = plugin; ret = plugin->file_decode(&decoder, path_max_fs); |