diff options
Diffstat (limited to 'binutils/readelf.c')
-rw-r--r-- | binutils/readelf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/binutils/readelf.c b/binutils/readelf.c index f9f17f7..629db76 100644 --- a/binutils/readelf.c +++ b/binutils/readelf.c @@ -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 ("."); |