* xml-support.c (gdb_xml_end_element): Remove wrong backslashes.

This commit is contained in:
Daniel Jacobowitz 2007-01-05 00:39:54 +00:00
parent d4e16e86c4
commit d097fa3ec2
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2007-01-04 Daniel Jacobowitz <dan@codesourcery.com>
* xml-support.c (gdb_xml_end_element): Remove wrong backslashes.
2007-01-05 Nick Roberts <nickrob@snap.net.nz>
* varobj.c (get_type_deref): Fix variable objects for references to

View File

@ -309,7 +309,7 @@ gdb_xml_end_element (void *data, const XML_Char *name)
element++, seen <<= 1)
if ((scope->seen & seen) == 0
&& (element->flags & GDB_XML_EF_OPTIONAL) == 0)
gdb_xml_error (parser, _("Required element \<%s\> is missing"),
gdb_xml_error (parser, _("Required element <%s> is missing"),
element->name);
/* Call the element processor. */