1
0
mirror of https://github.com/cc65/cc65.git synced 2024-07-09 16:29:09 +00:00

Changed an error message

git-svn-id: svn://svn.cc65.org/cc65/trunk@679 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz 2001-03-26 22:05:05 +00:00
parent 2eab65ad24
commit e07945e9fc

View File

@ -56,7 +56,7 @@ void DoGoto (void)
/* Label name must follow */ /* Label name must follow */
if (curtok != TOK_IDENT) { if (curtok != TOK_IDENT) {
Error ("Identifier expected"); Error ("Label name expected");
} else { } else {