From f61b007645be9b13bdbf1ae3f84b99037e6779bf Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Wed, 11 Jan 2023 11:53:43 +0530 Subject: [PATCH] ... --- kitty/child-monitor.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kitty/child-monitor.c b/kitty/child-monitor.c index 45c2d9c7b..ac94905c4 100644 --- a/kitty/child-monitor.c +++ b/kitty/child-monitor.c @@ -1393,7 +1393,7 @@ static void print_text(const unsigned char *text, ssize_t sz) { for (ssize_t i = 0; i < sz; i++) { unsigned char ch = text[i]; - if (32 <= ch && ch <= 127) { + if (32 <= ch && ch < 127) { if (ch == '\\') fprintf(stderr, "%c", ch); fprintf(stderr, "%c", ch); } else fprintf(stderr, "\\x%02x", ch);