diff options
author | Andrew Burgess <andrew.burgess@embecosm.com> | 2021-06-07 10:18:47 +0100 |
---|---|---|
committer | Andrew Burgess <andrew.burgess@embecosm.com> | 2021-06-28 16:31:30 +0100 |
commit | 4d60b897707863bdfceb5b6e1c14545ad173a3a1 (patch) | |
tree | 6205d0ece5f197df9c8467fc94c07748b1540dbb /gdb/ChangeLog | |
parent | sim: bpf: enable -Werror usage (diff) | |
download | binutils-gdb-4d60b897707863bdfceb5b6e1c14545ad173a3a1.tar.gz binutils-gdb-4d60b897707863bdfceb5b6e1c14545ad173a3a1.tar.bz2 binutils-gdb-4d60b897707863bdfceb5b6e1c14545ad173a3a1.zip |
gdb/remote: Use true/false instead of 1/0
The remote_state::starting_up member variable is already of type bool,
but in some places we still write to it using 1 and 0. This commit
just updates things to use true and false.
There should be no user visible change after this commit.
gdb/ChangeLog:
* remote.c (remote_target::start_remote): Set 'starting_up' using
boolean values instead of integers.
Diffstat (limited to 'gdb/ChangeLog')
-rw-r--r-- | gdb/ChangeLog | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 14d4a9ec226..5ba05036ec2 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2021-06-28 Andrew Burgess <andrew.burgess@embecosm.com> + + * remote.c (remote_target::start_remote): Set 'starting_up' using + boolean values instead of integers. + 2021-06-25 Simon Marchi <simon.marchi@polymtl.ca> * guile/scm-param.c (struct param_smob) <set_command, |