diff options
-rw-r--r-- | src/debug.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/debug.c b/src/debug.c index 715f72a..be1d861 100644 --- a/src/debug.c +++ b/src/debug.c @@ -66,7 +66,7 @@ void print_hex(char const *buf,size_t len){ for(;y <= x;y++){ unsigned char c = buf[y]; - int sym = c < 0x20 || c > 0x7F; + int sym = c < 0x20 || c > 0x7E; if(sym) fputc('.',stderr); else fputc(c,stderr); } |