aboutsummaryrefslogtreecommitdiff
path: root/gdb
diff options
context:
space:
mode:
authorTom Tromey <tromey@adacore.com>2025-01-31 14:23:32 -0700
committerTom Tromey <tromey@adacore.com>2025-01-31 14:23:32 -0700
commite30206560f4b8703dd6f1068c74c149ebc6a6355 (patch)
tree2c6740548b5828a5854fc5200f1945283e57becb /gdb
parent76848059415bcafb902c6ef7973b27f3894c287b (diff)
downloadgdb-e30206560f4b8703dd6f1068c74c149ebc6a6355.zip
gdb-e30206560f4b8703dd6f1068c74c149ebc6a6355.tar.gz
gdb-e30206560f4b8703dd6f1068c74c149ebc6a6355.tar.bz2
Use "false" when setting cli_styling
I noticed a spot that uses 0 where "false" is more appropriate.
Diffstat (limited to 'gdb')
-rw-r--r--gdb/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/main.c b/gdb/main.c
index 33cdd90..b12e5e1 100644
--- a/gdb/main.c
+++ b/gdb/main.c
@@ -1027,7 +1027,7 @@ captured_main_1 (struct captured_main_args *context)
quiet = 1;
/* Disable all output styling when running in batch mode. */
- cli_styling = 0;
+ cli_styling = false;
}
}