X-Git-Url: https://git.libre-soc.org/?a=blobdiff_plain;f=gdb%2Fgo-typeprint.c;h=4995ac3918673b8f3d510772a362ff7504922632;hb=0d02e70b197c786f26175b9a73f94e01d14abdab;hp=1729a1f7a648f60fd59913e8c2a1c76006f1f22c;hpb=3666a04883754298b03884222206bfe756fbc520;p=binutils-gdb.git diff --git a/gdb/go-typeprint.c b/gdb/go-typeprint.c index 1729a1f7a64..4995ac39186 100644 --- a/gdb/go-typeprint.c +++ b/gdb/go-typeprint.c @@ -1,6 +1,6 @@ /* Support for printing Go types for GDB, the GNU debugger. - Copyright (C) 2012-2021 Free Software Foundation, Inc. + Copyright (C) 2012-2022 Free Software Foundation, Inc. This file is part of GDB. @@ -54,10 +54,10 @@ go_language::print_type (struct type *type, const char *varstring, if (type->code () == TYPE_CODE_ARRAY && TYPE_TARGET_TYPE (type)->code () == TYPE_CODE_CHAR) { - fputs_filtered ("string", stream); + gdb_puts ("string", stream); return; } /* Punt the rest to C for now. */ - c_print_type (type, varstring, stream, show, level, flags); + c_print_type (type, varstring, stream, show, level, la_language, flags); }