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]

[commit] dwarf2read.c (lookup_dwo_cutu): Improve complaint text.


Hi.
A simple patch, it improves the wording of a complaint.

Committed.

2013-03-29  Doug Evans  <dje@google.com>

	* dwarf2read.c (lookup_dwo_cutu): Improve complaint text.

Index: dwarf2read.c
===================================================================
RCS file: /cvs/src/src/gdb/dwarf2read.c,v
retrieving revision 1.767
diff -u -p -r1.767 dwarf2read.c
--- dwarf2read.c	29 Mar 2013 17:48:48 -0000	1.767
+++ dwarf2read.c	29 Mar 2013 18:45:06 -0000
@@ -9335,9 +9335,9 @@ lookup_dwo_cutu (struct dwarf2_per_cu_da
     }
 
   complaint (&symfile_complaints,
-	     _("Could not find DWO CU referenced by CU at offset 0x%x"
+	     _("Could not find DWO %s referenced by CU at offset 0x%x"
 	       " [in module %s]"),
-	     this_unit->offset.sect_off, objfile->name);
+	     kind, this_unit->offset.sect_off, objfile->name);
   return NULL;
 }
 


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