diff options
author | Nick Clifton <nickc@redhat.com> | 2022-01-04 10:26:15 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2022-01-04 10:26:15 +0000 |
commit | e2c0cef94da679745201317a0da0228f0f50158b (patch) | |
tree | 2bb953a6f4db6def1369ab7115122ebcc67cb8b5 /binutils | |
parent | f1e044bbb627d6176c01136ef3ba60f1bd35e2a3 (diff) | |
download | gdb-e2c0cef94da679745201317a0da0228f0f50158b.zip gdb-e2c0cef94da679745201317a0da0228f0f50158b.tar.gz gdb-e2c0cef94da679745201317a0da0228f0f50158b.tar.bz2 |
Remove a spurious debugging message.
PR 28716
* dwarf.c (load_build_id_debug_file): Remove spurious printf.
Diffstat (limited to 'binutils')
-rw-r--r-- | binutils/ChangeLog | 5 | ||||
-rw-r--r-- | binutils/dwarf.c | 3 |
2 files changed, 5 insertions, 3 deletions
diff --git a/binutils/ChangeLog b/binutils/ChangeLog index 980c5ff..3953e4e 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,3 +1,8 @@ +2022-01-04 Nick Clifton <nickc@redhat.com> + + PR 28716 + * dwarf.c (load_build_id_debug_file): Remove spurious printf. + 2021-12-16 Nick Clifton <nickc@redhat.com> PR 28697 diff --git a/binutils/dwarf.c b/binutils/dwarf.c index b8c6d65..f14fdbb 100644 --- a/binutils/dwarf.c +++ b/binutils/dwarf.c @@ -11394,9 +11394,6 @@ load_build_id_debug_file (const char * main_filename, void * main_file) return; } - printf (_("%s: Found build-id indexed debug file: %s\n\n"), - main_filename, filename); - add_separate_debug_file (filename, handle); } |