diff options
author | Tom Tromey <tom@tromey.com> | 2022-02-10 16:57:34 -0700 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2022-10-10 10:43:34 -0600 |
commit | 3a64633804aca8b4c4852241c70936177664c18a (patch) | |
tree | 12d48f4cf2c9e3cee15b89ab90dd9ff15a3b8897 | |
parent | 1be8435c74de6738aec7ed623b59e381fa9bb644 (diff) | |
download | gdb-3a64633804aca8b4c4852241c70936177664c18a.zip gdb-3a64633804aca8b4c4852241c70936177664c18a.tar.gz gdb-3a64633804aca8b4c4852241c70936177664c18a.tar.bz2 |
Boolify need_escape in generic_emit_char
This changes 'need_escape' in generic_emit_char to be of type bool,
rather than int.
-rw-r--r-- | gdb/valprint.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/gdb/valprint.c b/gdb/valprint.c index 395c6e9..92d7252 100644 --- a/gdb/valprint.c +++ b/gdb/valprint.c @@ -2075,11 +2075,11 @@ print_wchar (gdb_wint_t w, const gdb_byte *orig, int orig_len, int width, enum bfd_endian byte_order, struct obstack *output, - int quoter, int *need_escapep) + int quoter, bool *need_escapep) { - int need_escape = *need_escapep; + bool need_escape = *need_escapep; - *need_escapep = 0; + *need_escapep = false; /* iswprint implementation on Windows returns 1 for tab character. In order to avoid different printout on this host, we explicitly @@ -2149,7 +2149,7 @@ print_wchar (gdb_wint_t w, const gdb_byte *orig, ++i; } - *need_escapep = 1; + *need_escapep = true; } break; } @@ -2167,7 +2167,7 @@ generic_emit_char (int c, struct type *type, struct ui_file *stream, enum bfd_endian byte_order = type_byte_order (type); gdb_byte *c_buf; - int need_escape = 0; + bool need_escape = false; c_buf = (gdb_byte *) alloca (type->length ()); pack_long (c_buf, type, c); @@ -2332,7 +2332,7 @@ print_converted_chars_to_obstack (struct obstack *obstack, const converted_character *elem; enum {START, SINGLE, REPEAT, INCOMPLETE, FINISH} state, last; gdb_wchar_t wide_quote_char = gdb_btowc (quote_char); - int need_escape = 0; + bool need_escape = false; /* Set the start state. */ idx = 0; |