mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-08-06 14:49:38 +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>
|
2003-10-27 Kazu Hirata <kazu@cs.umass.edu>
|
||||||
|
|
||||||
* ChangeLog: Fix typos.
|
* ChangeLog: Fix typos.
|
||||||
|
@ -6115,7 +6115,7 @@ dump_section (Elf_Internal_Shdr *section, FILE *file)
|
|||||||
for (j = 0; j < lbytes; j++)
|
for (j = 0; j < lbytes; j++)
|
||||||
{
|
{
|
||||||
k = data[j];
|
k = data[j];
|
||||||
if (k >= ' ' && k < 0x80)
|
if (k >= ' ' && k < 0x7f)
|
||||||
printf ("%c", k);
|
printf ("%c", k);
|
||||||
else
|
else
|
||||||
printf (".");
|
printf (".");
|
||||||
|
Reference in New Issue
Block a user