summaryrefslogtreecommitdiffstats
path: root/tdecore/kdebug.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2025-05-13 09:38:34 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2025-05-15 18:46:42 +0900
commitad58630b34fc61754c763cf951004ef27e38d33d (patch)
tree168cf1d101c4583c84d02c116cd305763118277b /tdecore/kdebug.cpp
parentbedc43ef09d9569fb7643849e8f24dd46c379eba (diff)
downloadtdelibs-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/kdebug.cpp')
-rw-r--r--tdecore/kdebug.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tdecore/kdebug.cpp b/tdecore/kdebug.cpp
index 46dac11d8..43b50880d 100644
--- a/tdecore/kdebug.cpp
+++ b/tdecore/kdebug.cpp
@@ -626,7 +626,7 @@ asymbol** bfdLoadSymtab (bfd *abfd) {
long symCount; // count of entries in symbol table
long symtab_sz; // size of the table
asymbol** rv;
- bfd_boolean dynamic = FALSE;
+ bool dynamic = false;
// make shure the file has symbol table
if ((bfd_get_file_flags (abfd) & HAS_SYMS) == 0){
@@ -637,7 +637,7 @@ asymbol** bfdLoadSymtab (bfd *abfd) {
symtab_sz = bfd_get_symtab_upper_bound (abfd);
if (symtab_sz == 0) {
symtab_sz = bfd_get_dynamic_symtab_upper_bound (abfd);
- dynamic = TRUE;
+ dynamic = true;
}
if (symtab_sz < 0) {
return 0;