[pushed] Use 'true' when assigning to sevenbit_strings
Checks
Commit Message
MI assigns '1' to sevenbit_strings but should use 'true' instead.
---
gdb/mi/mi-interp.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
base-commit: 285072c3d5612f8eeaf3d621346ab4a2586c7bf0
@@ -246,7 +246,7 @@ mi_interp::pre_command_loop ()
/* Turn off 8 bit strings in quoted output. Any character with the
high bit set is printed using C's octal format. */
- sevenbit_strings = 1;
+ sevenbit_strings = true;
/* Tell the world that we're alive. */
display_mi_prompt (mi);