diff --git a/ext/opcache/jit/ir/ir.c b/ext/opcache/jit/ir/ir.c index 8be380dfd098f..89f5d0e7d4fa8 100644 --- a/ext/opcache/jit/ir/ir.c +++ b/ext/opcache/jit/ir/ir.c @@ -84,7 +84,7 @@ static void ir_print_escaped_str(const char *s, size_t len, FILE *f) case '\"': fputs("\\\"", f); break; case '\a': fputs("\\a", f); break; case '\b': fputs("\\b", f); break; - case '\e': fputs("\\e", f); break; + case '\033': fputs("\\e", f); break; case '\f': fputs("\\f", f); break; case '\n': fputs("\\n", f); break; case '\r': fputs("\\r", f); break;