From 848359acedca430105ccf1dd52deb6f323ca877b Mon Sep 17 00:00:00 2001 From: Wu Zhou Date: Wed, 1 Mar 2006 01:37:26 +0000 Subject: [PATCH] * f-typeprint.c (f_type_print_base): Delete the redundant space. --- gdb/ChangeLog | 4 ++++ gdb/f-typeprint.c | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index e3784ac5898..52a8cc65612 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +2006-03-01 Wu Zhou + + * f-typeprint.c (f_type_print_base): Delete the redundant space. + 2006-02-28 Kevin Buettner * Makefile.in (mn10300-linux-tdep.o): Update dependencies. diff --git a/gdb/f-typeprint.c b/gdb/f-typeprint.c index b0de0ab0119..31b96a371f1 100644 --- a/gdb/f-typeprint.c +++ b/gdb/f-typeprint.c @@ -416,7 +416,7 @@ f_type_print_base (struct type *type, struct ui_file *stream, int show, the type name is, as recorded in the type itself. If there is no type name, then complain. */ if (TYPE_NAME (type) != NULL) - fprintfi_filtered (level, stream, "%s ", TYPE_NAME (type)); + fprintfi_filtered (level, stream, "%s", TYPE_NAME (type)); else error (_("Invalid type code (%d) in symbol table."), TYPE_CODE (type)); break; -- 2.30.2