diff options
author | Philippe Waroquiers <philippe.waroquiers@skynet.be> | 2022-11-27 17:57:08 +0100 |
---|---|---|
committer | Philippe Waroquiers <philippe.waroquiers@skynet.be> | 2022-11-27 21:06:18 +0100 |
commit | 30220b46d4cc34f4882525eb92b40725637cbba7 (patch) | |
tree | a26162c9325c20f2db32e3f233c4d8454cb698e3 /gdb/nto-procfs.c | |
parent | 4c35c4c6a779c79e456b7a5311f74aafc9026bd5 (diff) | |
download | gdb-30220b46d4cc34f4882525eb92b40725637cbba7.zip gdb-30220b46d4cc34f4882525eb92b40725637cbba7.tar.gz gdb-30220b46d4cc34f4882525eb92b40725637cbba7.tar.bz2 |
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>
Diffstat (limited to 'gdb/nto-procfs.c')
-rw-r--r-- | gdb/nto-procfs.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/nto-procfs.c b/gdb/nto-procfs.c index ef9e0f0..4a2968e 100644 --- a/gdb/nto-procfs.c +++ b/gdb/nto-procfs.c @@ -706,7 +706,7 @@ nto_procfs_target::attach (const char *args, int from_tty) ptid_t ptid = do_attach (ptid_t (pid)); inf = current_inferior (); inferior_appeared (inf, pid); - inf->attach_flag = 1; + inf->attach_flag = true; if (!inf->target_is_pushed (ops)) inf->push_target (ops); @@ -1286,7 +1286,7 @@ nto_procfs_target::create_inferior (const char *exec_file, inf = current_inferior (); inferior_appeared (inf, pid); - inf->attach_flag = 0; + inf->attach_flag = false; flags = _DEBUG_FLAG_KLC; /* Kill-on-Last-Close flag. */ errn = devctl (ctl_fd, DCMD_PROC_SET_FLAG, &flags, sizeof (flags), 0); |