mangle.c (mangle_conv_op_name_for_type): Correct sprintf format string again.

* mangle.c (mangle_conv_op_name_for_type): Correct sprintf format
	string again.

From-SVN: r68141
This commit is contained in:
Mark Mitchell 2003-06-18 06:29:58 +00:00 committed by Mark Mitchell
parent b9599e4675
commit a26574f5bc
2 changed files with 6 additions and 1 deletions

View 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

View 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);