gdb: remove spurious colon in create_debug_type_hash_table debug print
authorSimon Marchi <simon.marchi@polymtl.ca>
Mon, 15 Mar 2021 17:27:03 +0000 (13:27 -0400)
committerSimon Marchi <simon.marchi@polymtl.ca>
Mon, 15 Mar 2021 17:27:03 +0000 (13:27 -0400)
This printout in create_debug_type_hash_table has an unexpected colon at
the end, remove it:

    [dwarf-read] create_debug_type_hash_table: Reading .debug_info for /home/simark/build/binutils-gdb/gdb/a.out:

gdb/ChangeLog:

* dwarf2/read.c (create_debug_type_hash_table): Remove colon at
end of debug print.

Change-Id: I2d707248249daf4d8b6fa8e7064acdc56c90f2dd

gdb/ChangeLog
gdb/dwarf2/read.c

index 4ead5ae64513bce266101c7685837d4139bef99c..2315d5bc6ea124033dd0da64813276ed5052f6ca 100644 (file)
@@ -1,3 +1,8 @@
+2021-03-15  Simon Marchi  <simon.marchi@polymtl.ca>
+
+       * dwarf2/read.c (create_debug_type_hash_table): Remove colon at
+       end of debug print.
+
 2021-03-15  Simon Marchi  <simon.marchi@polymtl.ca>
 
        * dwarf2/read.c (dw2_get_file_names_reader): Remove info_ptr
index 704ba9f36655b786f21a15153120c293a727cd26..d6881300fa665b6991292f318a97884d7b5cea77 100644 (file)
@@ -6286,7 +6286,7 @@ create_debug_type_hash_table (dwarf2_per_objfile *per_objfile,
                    ? &dwo_file->sections.abbrev
                    : &per_objfile->per_bfd->abbrev);
 
-  dwarf_read_debug_printf ("Reading %s for %s:",
+  dwarf_read_debug_printf ("Reading %s for %s",
                           section->get_name (),
                           abbrev_section->get_file_name ());
 
This page took 0.036633 seconds and 4 git commands to generate.