diff options
author | Tom Tromey <tom@tromey.com> | 2022-06-12 14:13:22 -0600 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2022-12-19 08:18:59 -0700 |
commit | dad6b350f986a58abe469f4584ac515e7ac17879 (patch) | |
tree | d0112c62a3ff0ae9addccd5983035b443d8742a0 /gdb/dwarf2 | |
parent | 6829683679ce66f3ff3aa184609afa59ac349637 (diff) | |
download | binutils-gdb-dad6b350f986a58abe469f4584ac515e7ac17879.tar.gz |
Use bool constants for value_print_options
This changes the uses of value_print_options to use 'true' and 'false'
rather than integers.
Diffstat (limited to 'gdb/dwarf2')
-rw-r--r-- | gdb/dwarf2/read.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/dwarf2/read.c b/gdb/dwarf2/read.c index 032e20af93a..ddea38cf596 100644 --- a/gdb/dwarf2/read.c +++ b/gdb/dwarf2/read.c @@ -9045,7 +9045,7 @@ dwarf2_compute_name (const char *name, /* Specify decimal so that we do not depend on the radix. */ get_formatted_print_options (&opts, 'd'); - opts.raw = 1; + opts.raw = true; value_print (v, &buf, &opts); release_value (v); } |