| ... | ... | @@ -443,7 +443,7 @@ pub fn renderMessage(comp: *Compilation, m: anytype, msg: Message) void { |
| 443 | 443 | printRt(m, prop.msg, .{"{s}"}, .{&str}); |
| 444 | 444 | } else { |
| 445 | 445 | var buf: [3]u8 = undefined; |
| 446 | | const str = std.fmt.bufPrint(&buf, "x{x}", .{std.fmt.fmtSliceHexLower(&.{msg.extra.invalid_escape.char})}) catch unreachable; |
| 446 | const str = std.fmt.bufPrint(&buf, "x{x}", .{msg.extra.invalid_escape.char}) catch unreachable; |
| 447 | 447 | printRt(m, prop.msg, .{"{s}"}, .{str}); |
| 448 | 448 | } |
| 449 | 449 | }, |