diff options
author | Tom Tromey <tromey@adacore.com> | 2025-01-31 14:23:32 -0700 |
---|---|---|
committer | Tom Tromey <tromey@adacore.com> | 2025-01-31 14:23:32 -0700 |
commit | e30206560f4b8703dd6f1068c74c149ebc6a6355 (patch) | |
tree | 2c6740548b5828a5854fc5200f1945283e57becb /gdb | |
parent | 76848059415bcafb902c6ef7973b27f3894c287b (diff) | |
download | gdb-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.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; } } |