aboutsummaryrefslogtreecommitdiff
path: root/gdb/f-typeprint.c
diff options
context:
space:
mode:
authorWu Zhou <woodzltc@cn.ibm.com>2006-03-01 01:37:26 +0000
committerWu Zhou <woodzltc@cn.ibm.com>2006-03-01 01:37:26 +0000
commit848359acedca430105ccf1dd52deb6f323ca877b (patch)
treeeea467eae3eb19516d4d3978b3df4a7bbda850c4 /gdb/f-typeprint.c
parenta2f1638d0b0863e9e793d7df97859d27c61352c2 (diff)
downloadfsf-binutils-gdb-848359acedca430105ccf1dd52deb6f323ca877b.zip
fsf-binutils-gdb-848359acedca430105ccf1dd52deb6f323ca877b.tar.gz
fsf-binutils-gdb-848359acedca430105ccf1dd52deb6f323ca877b.tar.bz2
* f-typeprint.c (f_type_print_base): Delete the redundant space.
Diffstat (limited to 'gdb/f-typeprint.c')
-rw-r--r--gdb/f-typeprint.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/f-typeprint.c b/gdb/f-typeprint.c
index b0de0ab..31b96a3 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;