From c7c1795c817c1f7b89046c6d9f24379143f0bf6b Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Mon, 7 Apr 2025 16:34:47 +0900 Subject: Replace TRUE/FALSE with boolean values true/false Signed-off-by: Michele Calgaro --- kviewshell/plugins/djvu/libdjvu/debug.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'kviewshell/plugins/djvu/libdjvu/debug.cpp') diff --git a/kviewshell/plugins/djvu/libdjvu/debug.cpp b/kviewshell/plugins/djvu/libdjvu/debug.cpp index 40e57b70..cba08577 100644 --- a/kviewshell/plugins/djvu/libdjvu/debug.cpp +++ b/kviewshell/plugins/djvu/libdjvu/debug.cpp @@ -233,7 +233,7 @@ DjVuDebug& DjVuDebug::operator<<(type arg)\ DjVuDebug& DjVuDebug::operator<<(bool arg) { - format("%s", arg ? "TRUE" : "FALSE"); return *this; + format("%s", arg ? "true" : "false"); return *this; } OP(char, "%c") -- cgit v1.2.3