1
0
mirror of https://github.com/cc65/cc65.git synced 2025-08-09 13:25:06 +00:00

Fixed typo

This commit is contained in:
polluks2
2021-12-13 17:14:57 +01:00
committed by mrdudz
parent dd27a66a7b
commit 5afc349199

View File

@@ -196,7 +196,7 @@ static void StrVal (void)
default:
CfgWarning (&CfgErrorPos,
"Unkown escape sequence '%%%c'", C);
"Unknown escape sequence '%%%c'", C);
SB_AppendChar (&CfgSVal, '%');
SB_AppendChar (&CfgSVal, C);
NextChar ();