diff options
author | Zeke Lu <lvzecai@gmail.com> | 2022-09-20 11:19:06 +0100 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2022-09-20 11:19:06 +0100 |
commit | 6af418600c451337814fe464eceea20c23ad231c (patch) | |
tree | b4345c55a9c75cf3b0e397469e472c6db1f36cb6 | |
parent | ae2e4d4035f511543d12f74b3b7fdb1ba0daab16 (diff) | |
download | gdb-6af418600c451337814fe464eceea20c23ad231c.zip gdb-6af418600c451337814fe464eceea20c23ad231c.tar.gz gdb-6af418600c451337814fe464eceea20c23ad231c.tar.bz2 |
Bug 29580 - typo in warning message: .note.gnu.build-id data size is too bug
-rw-r--r-- | binutils/dwarf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/binutils/dwarf.c b/binutils/dwarf.c index f90f4ef..aef0f77 100644 --- a/binutils/dwarf.c +++ b/binutils/dwarf.c @@ -11719,7 +11719,7 @@ load_build_id_debug_file (const char * main_filename ATTRIBUTE_UNUSED, void * ma if (build_id_size > (section->size - 16)) { - warn (_(".note.gnu.build-id data size is too bug\n")); + warn (_(".note.gnu.build-id data size is too big\n")); return; } |