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/varobj.c | |
parent | 6829683679ce66f3ff3aa184609afa59ac349637 (diff) | |
download | gdb-dad6b350f986a58abe469f4584ac515e7ac17879.zip gdb-dad6b350f986a58abe469f4584ac515e7ac17879.tar.gz gdb-dad6b350f986a58abe469f4584ac515e7ac17879.tar.bz2 |
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/varobj.c')
-rw-r--r-- | gdb/varobj.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/varobj.c b/gdb/varobj.c index 467f9ff..6ed5b70 100644 --- a/gdb/varobj.c +++ b/gdb/varobj.c @@ -2144,7 +2144,7 @@ varobj_formatted_print_options (struct value_print_options *opts, enum varobj_display_formats format) { get_formatted_print_options (opts, format_code[(int) format]); - opts->deref_ref = 0; + opts->deref_ref = false; opts->raw = !pretty_printing; } |