diff options
author | Vladimir Mezentsev <vladimir.mezentsev@oracle.com> | 2025-06-29 16:45:13 -0700 |
---|---|---|
committer | Vladimir Mezentsev <vladimir.mezentsev@oracle.com> | 2025-06-30 00:25:34 -0700 |
commit | 88c66eca24b5fae7d411a2dda342e5a87f4a2d72 (patch) | |
tree | 92314e6fdf0b238073b5383310f4754e50bdd453 | |
parent | cf729dbef8b0a97aae040b9d9d4926d462001997 (diff) | |
download | binutils-88c66eca24b5fae7d411a2dda342e5a87f4a2d72.zip binutils-88c66eca24b5fae7d411a2dda342e5a87f4a2d72.tar.gz binutils-88c66eca24b5fae7d411a2dda342e5a87f4a2d72.tar.bz2 |
Fix typos in binutils/dwarf.c
binutils/ChangeLog
2025-06-29 Vladimir Mezentsev <vladimir.mezentsev@oracle.com>
* dwarf.c: Change "/usrlib64/debug/usr" to "/usr/lib64/debug/usr/" and
.gun_debugaltlink to .gnu_debugaltlink.
-rw-r--r-- | binutils/dwarf.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/binutils/dwarf.c b/binutils/dwarf.c index 5b3ece5..8806cde 100644 --- a/binutils/dwarf.c +++ b/binutils/dwarf.c @@ -10930,7 +10930,7 @@ display_debug_links (struct dwarf_section * section, (padding) If needed to reach a 4 byte boundary. (uint32_t) CRC32 value. - The .gun_debugaltlink section is formatted as: + The .gnu_debugaltlink section is formatted as: (c-string) Filename. (binary) Build-ID. */ @@ -12330,7 +12330,7 @@ load_build_id_debug_file (const char * main_filename ATTRIBUTE_UNUSED, void * ma + strlen (".debug") /* The next string should be the same as the longest name found in the prefixes[] array below. */ - + strlen ("/usrlib64/debug/usr") + + strlen ("/usr/lib64/debug/usr/") + 1); void * handle; @@ -12341,7 +12341,7 @@ load_build_id_debug_file (const char * main_filename ATTRIBUTE_UNUSED, void * ma "/usr/lib/debug/", "/usr/lib/debug/usr/", "/usr/lib64/debug/", - "/usr/lib64/debug/usr" + "/usr/lib64/debug/usr/" }; long unsigned int i; |