diff options
author | Simon Marchi <simon.marchi@ericsson.com> | 2015-11-17 13:07:24 +0000 |
---|---|---|
committer | Pedro Alves <palves@redhat.com> | 2015-11-18 15:59:30 +0000 |
commit | 79f338988c53625a3ab3fba63f06c6ffd224e9ff (patch) | |
tree | 3735d0b1d929d5475c5801f428efa6ef006f1ee2 /gdb/c-lang.c | |
parent | e3a3797ee558f4f84c67a65e1d9abce845f15abd (diff) | |
download | gdb-79f338988c53625a3ab3fba63f06c6ffd224e9ff.zip gdb-79f338988c53625a3ab3fba63f06c6ffd224e9ff.tar.gz gdb-79f338988c53625a3ab3fba63f06c6ffd224e9ff.tar.bz2 |
[C++] Add casts to obstack_base calls
The recent libiberty import of upstream obstack.h (314dee8ea9be) makes
obstack_base return a 'void *', with the consequence that a few places
in gdb need a (char *) cast.
gdb/ChangeLog:
2015-11-18 Simon Marchi <simon.marchi@ericsson.com>
Pedro Alves <palves@redhat.com>
* break-catch-sig.c (signal_catchpoint_print_one): Add cast.
* c-exp.y (parse_string_or_char, yylex): Add casts.
* c-lang.c (evaluate_subexp_c): Add casts.
* d-exp.y (parse_string_or_char, yylex): Add casts.
* go-exp.y (parse_string_or_char, build_packaged_name): Add casts.
* p-valprint.c (pascal_object_print_value_fields): Add casts.
* valprint.c (generic_emit_char, generic_printstr): Add casts.
Diffstat (limited to 'gdb/c-lang.c')
-rw-r--r-- | gdb/c-lang.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/c-lang.c b/gdb/c-lang.c index 2646b05..d79a827 100644 --- a/gdb/c-lang.c +++ b/gdb/c-lang.c @@ -701,7 +701,7 @@ evaluate_subexp_c (struct type *expect_type, struct expression *exp, obstack_object_size (&output)); } else - result = value_cstring (obstack_base (&output), + result = value_cstring ((const char *) obstack_base (&output), obstack_object_size (&output), type); } |