diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-05-13 09:38:34 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-05-15 18:46:42 +0900 |
commit | ad58630b34fc61754c763cf951004ef27e38d33d (patch) | |
tree | 168cf1d101c4583c84d02c116cd305763118277b /tdecore/tests/kmdcodectest.cpp | |
parent | bedc43ef09d9569fb7643849e8f24dd46c379eba (diff) | |
download | tdelibs-ad58630b34fc61754c763cf951004ef27e38d33d.tar.gz tdelibs-ad58630b34fc61754c763cf951004ef27e38d33d.zip |
Replace TRUE/FALSE with boolean values true/false
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'tdecore/tests/kmdcodectest.cpp')
-rw-r--r-- | tdecore/tests/kmdcodectest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tdecore/tests/kmdcodectest.cpp b/tdecore/tests/kmdcodectest.cpp index 571d3f10b..4cc06813d 100644 --- a/tdecore/tests/kmdcodectest.cpp +++ b/tdecore/tests/kmdcodectest.cpp @@ -268,7 +268,7 @@ void MD5_verify( const char *input, const char *digest, bool isFile ) cout << "Calculated Digest = " << context.hexDigest() << endl; cout << "Supplied Digest = " << digest << endl; - cout << "Matches: " << (result ? "TRUE":"FALSE") << endl; + cout << "Matches: " << (result ? "true":"false") << endl; } void MD5_file (const char *filename, bool rawOutput ) |