Currently, a string_ctype (only used for the declaration of builtin functions) is displayed as "string", not "char *". Fix this by removing the entry for string_ctype from typenames[] which should only contains the name of base types. Signed-off-by: Luc Van Oostenryck <luc.vanoostenryck@xxxxxxxxx> --- show-parse.c | 1 - 1 file changed, 1 deletion(-) diff --git a/show-parse.c b/show-parse.c index 36b447421..c73ee4dd1 100644 --- a/show-parse.c +++ b/show-parse.c @@ -248,7 +248,6 @@ static struct ctype_name { { &void_ctype, "void" }, { &bool_ctype, "bool" }, - { &string_ctype, "string" }, { &float_ctype, "float" }, { &double_ctype, "double" }, -- 2.20.0