From: Tom Tromey Date: Fri, 31 Jan 2025 21:23:32 +0000 (-0700) Subject: Use "false" when setting cli_styling X-Git-Tag: binutils-2_45~1773 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e30206560f4b8703dd6f1068c74c149ebc6a6355;p=thirdparty%2Fbinutils-gdb.git Use "false" when setting cli_styling I noticed a spot that uses 0 where "false" is more appropriate. --- diff --git a/gdb/main.c b/gdb/main.c index 33cdd900994..b12e5e10716 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; } }