From 0949fe8b08a98299371416bcb62563777e65a54b Mon Sep 17 00:00:00 2001 From: lemon Date: Wed, 15 Oct 2025 10:05:45 +0200 Subject: c: error string typo --- c.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/c.c b/c.c index 20297ce..2c899ac 100644 --- a/c.c +++ b/c.c @@ -448,7 +448,7 @@ condtype(const struct expr *a, const struct expr *b) static void bintypeerr(const struct span *span, enum toktag tt, union type lhs, union type rhs) { - error(span, "bad operands to %tt: %'ty', '%ty'", tt, lhs, rhs); + error(span, "bad operands to %tt: '%ty', '%ty'", tt, lhs, rhs); } enum binopclass { /* binary operator type-checking classes */ -- cgit v1.2.3