diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-03-26 21:01:38 +0900 |
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-03-28 09:16:50 +0900 |
| commit | baf77040abf0f7c15cae85f54cdfdae45f89b307 (patch) | |
| tree | a552eb1982a1be5bc87d799b23860f4a88ab5272 /plugins | |
| parent | 39f2157d6d3033db0ced5ef285896267e9fcbfaa (diff) | |
| download | k3b-baf77040abf0f7c15cae85f54cdfdae45f89b307.tar.gz k3b-baf77040abf0f7c15cae85f54cdfdae45f89b307.zip | |
Replace TRUE/FALSE with boolean values true/false
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 5e9ef6688e58dccde4be0f0db310987db99d66d7)
Diffstat (limited to 'plugins')
| -rw-r--r-- | plugins/decoder/flac/k3bflacdecoder.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/decoder/flac/k3bflacdecoder.cpp b/plugins/decoder/flac/k3bflacdecoder.cpp index 6a95854..2d814d8 100644 --- a/plugins/decoder/flac/k3bflacdecoder.cpp +++ b/plugins/decoder/flac/k3bflacdecoder.cpp @@ -166,7 +166,7 @@ K3bFLACDecoder::Private::seek_callback(FLAC__uint64 absolute_byte_offset) { #else FLAC__StreamDecoderSeekStatus K3bFLACDecoder::Private::seek_callback(FLAC__uint64 absolute_byte_offset) { - if(file->at(absolute_byte_offset) == FALSE) + if(file->at(absolute_byte_offset) == false) return FLAC__STREAM_DECODER_SEEK_STATUS_ERROR; else return FLAC__STREAM_DECODER_SEEK_STATUS_OK; |
