mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-08-05 21:50:21 +08:00
* readelf.c (dump_section): Don't display DEL characters.
This commit is contained in:
@ -1,3 +1,7 @@
|
||||
2003-10-28 Segher Boessenkool <segher@kernel.crashing.org>
|
||||
|
||||
* readelf.c (dump_section): Don't display DEL characters.
|
||||
|
||||
2003-10-27 Kazu Hirata <kazu@cs.umass.edu>
|
||||
|
||||
* ChangeLog: Fix typos.
|
||||
|
@ -6115,7 +6115,7 @@ dump_section (Elf_Internal_Shdr *section, FILE *file)
|
||||
for (j = 0; j < lbytes; j++)
|
||||
{
|
||||
k = data[j];
|
||||
if (k >= ' ' && k < 0x80)
|
||||
if (k >= ' ' && k < 0x7f)
|
||||
printf ("%c", k);
|
||||
else
|
||||
printf (".");
|
||||
|
Reference in New Issue
Block a user