From 0dc444acfcf024bfefa4b6f5646ddc2ab19ffd91 Mon Sep 17 00:00:00 2001 From: Curle Date: Sun, 22 Nov 2020 00:43:32 +0000 Subject: [PATCH] Fix typo Lost my train of thought while typing this. --- src/Lexer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Lexer.c b/src/Lexer.c index 0fcee47..e7a83af 100644 --- a/src/Lexer.c +++ b/src/Lexer.c @@ -124,7 +124,7 @@ static int ReadCharLiteral() { case '"': return '"'; case '\'': return '\''; default: - DieChar("Unknown Escape: ", c); + DieChar("Unknown Escape: ", Char); } }