This is the mail archive of the gdb-patches@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[ob] Typo fix


Nick noticed this typo, which my compiler didn't object to but some
apparently do.  Fixed, sorry for the inconvenience.

-- 
Daniel Jacobowitz
CodeSourcery

2007-01-04  Daniel Jacobowitz  <dan@codesourcery.com>

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

Index: xml-support.c
===================================================================
RCS file: /cvs/src/src/gdb/xml-support.c,v
retrieving revision 1.4
diff -u -p -r1.4 xml-support.c
--- xml-support.c	4 Jan 2007 22:11:44 -0000	1.4
+++ xml-support.c	5 Jan 2007 00:38:59 -0000
@@ -309,7 +309,7 @@ gdb_xml_end_element (void *data, const X
        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. */


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]