1
0
mirror of https://github.com/cc65/cc65.git synced 2025-01-11 11:30:13 +00:00

Merge pull request #1610 from polluks2/patch-2

Fixed typo
This commit is contained in:
Bob Andrews 2021-12-13 18:49:40 +01:00 committed by GitHub
commit 37d0c4066c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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