mangle.c (mangle_conv_op_name_for_type): Correct sprintf format string again.
authorMark Mitchell <mark@codesourcery.com>
Wed, 18 Jun 2003 06:29:58 +0000 (06:29 +0000)
committerMark Mitchell <mmitchel@gcc.gnu.org>
Wed, 18 Jun 2003 06:29:58 +0000 (06:29 +0000)
* mangle.c (mangle_conv_op_name_for_type): Correct sprintf format
string again.

From-SVN: r68141

gcc/cp/ChangeLog
gcc/cp/mangle.c

index 96b21ffd3ed61e037b421a1c2970b08ec9447bd9..b817ccaf059c1cd8ff0f015373ab559f9c8e7d55 100644 (file)
@@ -1,3 +1,8 @@
+2003-06-17  Mark Mitchell  <mark@codesourcery.com>
+
+       * mangle.c (mangle_conv_op_name_for_type): Correct sprintf format
+       string again.
+
 2003-06-17  Robert Abeles  <rabeles@archaelogic.com>
 
        * optimize.c (dump_function): Form complete flag name by
index 63a8bd731b2d26f8e566b3a9501c85bbe6783871..2040ae996d6a6fb27f91f892fae4c06df5333da6 100644 (file)
@@ -2628,7 +2628,7 @@ mangle_conv_op_name_for_type (const tree type)
     return TREE_VALUE ((tree) *slot);
 
   /* Create a unique name corresponding to TYPE.  */
-  sprintf (buffer, "operator %lu\n", 
+  sprintf (buffer, "operator %lu", 
           (unsigned long) htab_elements (conv_type_names));
   identifier = get_identifier (buffer);
   *slot = build_tree_list (type, identifier);