* f-typeprint.c (f_type_print_base): Delete the redundant space.
authorWu Zhou <woodzltc@cn.ibm.com>
Wed, 1 Mar 2006 01:37:26 +0000 (01:37 +0000)
committerWu Zhou <woodzltc@cn.ibm.com>
Wed, 1 Mar 2006 01:37:26 +0000 (01:37 +0000)
gdb/ChangeLog
gdb/f-typeprint.c

index e3784ac589852fe7ee8194f70b67f2b9a7896fdc..52a8cc65612def559b0f842254d99fbbf14e9126 100644 (file)
@@ -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.
index b0de0ab011937422f90b78f82a8f938f711a4370..31b96a371f1bf3648fab02aed1ea57d6245e637e 100644 (file)
@@ -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;