From ec1f2d91e07522a77cbef7a438e132ff4a2a7839 Mon Sep 17 00:00:00 2001 From: Simon Marchi Date: Sun, 1 Apr 2018 14:23:17 -0400 Subject: Remove char_ptr typedef Now that all instances of VEC(char_ptr) are gone, we can remove the typedef. There is just one usage left, that is trivial to replace. Tested by rebuilding on an enable-targets=all build. gdb/ChangeLog: * common/gdb_vecs.h (char_ptr): Remove. * tracepoint.c (encode_actions_1): Remove usage of char_ptr. --- gdb/tracepoint.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gdb/tracepoint.c') diff --git a/gdb/tracepoint.c b/gdb/tracepoint.c index 954d039..24bb914 100644 --- a/gdb/tracepoint.c +++ b/gdb/tracepoint.c @@ -1382,7 +1382,7 @@ encode_actions_1 (struct command_line *action, case OP_VAR_VALUE: { struct symbol *sym = exp->elts[2].symbol; - char_ptr name = (char_ptr) SYMBOL_NATURAL_NAME (sym); + const char *name = SYMBOL_NATURAL_NAME (sym); collect->collect_symbol (exp->elts[2].symbol, target_gdbarch (), -- cgit v1.1