public inbox for gdb-cvs@sourceware.org
help / color / mirror / Atom feed
From: Andrew Burgess <aburgess@sourceware.org>
To: gdb-cvs@sourceware.org
Subject: [binutils-gdb] gdb/mi: some int to bool conversion
Date: Sun,  2 Oct 2022 13:15:23 +0000 (GMT)	[thread overview]
Message-ID: <20221002131523.48DCB385841F@sourceware.org> (raw)

https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=924272f2bf5e398412473b14041f84397293c3d3

commit 924272f2bf5e398412473b14041f84397293c3d3
Author: Andrew Burgess <aburgess@redhat.com>
Date:   Thu Jun 23 15:02:04 2022 +0100

    gdb/mi: some int to bool conversion
    
    Just some simple int to bool conversion in mi_cmd_disassemble.  There
    should be no user visible changes after this commit.

Diff:
---
 gdb/mi/mi-cmd-disas.c | 24 ++++++++++++------------
 1 file changed, 12 insertions(+), 12 deletions(-)

diff --git a/gdb/mi/mi-cmd-disas.c b/gdb/mi/mi-cmd-disas.c
index c8e06cd940a..4f6e5613b9d 100644
--- a/gdb/mi/mi-cmd-disas.c
+++ b/gdb/mi/mi-cmd-disas.c
@@ -62,12 +62,12 @@ mi_cmd_disassemble (const char *command, char **argv, int argc)
   struct symtab *s;
 
   /* Which options have we processed ... */
-  int file_seen = 0;
-  int line_seen = 0;
-  int num_seen = 0;
-  int start_seen = 0;
-  int end_seen = 0;
-  int addr_seen = 0;
+  bool file_seen = false;
+  bool line_seen = false;
+  bool num_seen = false;
+  bool start_seen = false;
+  bool end_seen = false;
+  bool addr_seen = false;
 
   /* ... and their corresponding value. */
   char *file_string = NULL;
@@ -107,27 +107,27 @@ mi_cmd_disassemble (const char *command, char **argv, int argc)
 	{
 	case FILE_OPT:
 	  file_string = oarg;
-	  file_seen = 1;
+	  file_seen = true;
 	  break;
 	case LINE_OPT:
 	  line_num = atoi (oarg);
-	  line_seen = 1;
+	  line_seen = true;
 	  break;
 	case NUM_OPT:
 	  how_many = atoi (oarg);
-	  num_seen = 1;
+	  num_seen = true;
 	  break;
 	case START_OPT:
 	  low = parse_and_eval_address (oarg);
-	  start_seen = 1;
+	  start_seen = true;
 	  break;
 	case END_OPT:
 	  high = parse_and_eval_address (oarg);
-	  end_seen = 1;
+	  end_seen = true;
 	  break;
 	case ADDR_OPT:
 	  addr = parse_and_eval_address (oarg);
-	  addr_seen = 1;
+	  addr_seen = true;
 	  break;
 	}
     }

                 reply	other threads:[~2022-10-02 13:15 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20221002131523.48DCB385841F@sourceware.org \
    --to=aburgess@sourceware.org \
    --cc=gdb-cvs@sourceware.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).