Use false/true for some inferior class members instead of 0/1

Some class members were changed to bool, but there was
still some assignments or comparisons using 0/1.

Approved-By: Simon Marchi <simon.marchi@efficios.com>
This commit is contained in:
Philippe Waroquiers
2022-11-27 17:57:08 +01:00
parent 4c35c4c6a7
commit 30220b46d4
11 changed files with 22 additions and 22 deletions

View File

@@ -4625,7 +4625,7 @@ remote_target::process_initial_stop_replies (int from_tty)
registers/memory. */
for (inferior *inf : all_non_exited_inferiors (this))
{
inf->needs_setup = 1;
inf->needs_setup = true;
if (non_stop)
{