Commit 88f4f86f by Jason Merrill Committed by Jason Merrill

gengtype.c (write_types): Fix warning message.

	* gengtype.c (write_types): Fix warning message.
	(write_local): Likewise.

From-SVN: r187118
parent a85951f4
2012-05-03 Jason Merrill <jason@redhat.com>
* gengtype.c (write_types): Fix warning message.
(write_local): Likewise.
2012-05-02 Jason Merrill <jason@redhat.com>
* dwarf2out.c (struct external_ref, build_local_stub): New.
......
......@@ -3286,7 +3286,7 @@ write_types (outf_p output_header, type_p structures, type_p param_structs,
if (stru->u.s.line.file == NULL)
{
fprintf (stderr, "warning: structure `%s' used but not defined\n",
s->u.s.tag);
stru->u.s.tag);
continue;
}
}
......@@ -3522,7 +3522,7 @@ write_local (outf_p output_header, type_p structures, type_p param_structs)
if (stru->u.s.line.file == NULL)
{
fprintf (stderr, "warning: structure `%s' used but not defined\n",
s->u.s.tag);
stru->u.s.tag);
continue;
}
......
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