* f-typeprint.c (f_type_print_base): Delete the redundant space.
This commit is contained in:
parent
a2f1638d0b
commit
848359aced
2 changed files with 5 additions and 1 deletions
|
@ -1,3 +1,7 @@
|
|||
2006-03-01 Wu Zhou <woodzltc@cn.ibm.com>
|
||||
|
||||
* f-typeprint.c (f_type_print_base): Delete the redundant space.
|
||||
|
||||
2006-02-28 Kevin Buettner <kevinb@redhat.com>
|
||||
|
||||
* Makefile.in (mn10300-linux-tdep.o): Update dependencies.
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue