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); } }