Commit a26574f5 by Mark Mitchell Committed by Mark Mitchell

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
parent b9599e46
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
......
......@@ -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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment