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-26 21:01:38 +0900 |
commit | 5e9ef6688e58dccde4be0f0db310987db99d66d7 (patch) | |
tree | 909c595b6c09eb7de9d78bfa303814316600ab26 /libk3b | |
parent | 4b8cb80dce4b488d36b02d0c1d218676ecd78ac2 (diff) | |
download | k3b-5e9ef6688e58dccde4be0f0db310987db99d66d7.tar.gz k3b-5e9ef6688e58dccde4be0f0db310987db99d66d7.zip |
Replace TRUE/FALSE with boolean values true/false
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'libk3b')
-rw-r--r-- | libk3b/plugin/libsamplerate/samplerate.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libk3b/plugin/libsamplerate/samplerate.h b/libk3b/plugin/libsamplerate/samplerate.h index dfc4448..e345d85 100644 --- a/libk3b/plugin/libsamplerate/samplerate.h +++ b/libk3b/plugin/libsamplerate/samplerate.h @@ -99,7 +99,7 @@ int src_set_ratio (SRC_STATE *state, double new_ratio) ; int src_reset (SRC_STATE *state) ; /* -** Return TRUE if ratio is a valid conversion ratio, FALSE +** Return true if ratio is a valid conversion ratio, false ** otherwise. */ |