1
0
mirror of https://github.com/cc65/cc65.git synced 2024-07-05 21:29:03 +00:00

Changed an error message

git-svn-id: svn://svn.cc65.org/cc65/trunk@854 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz 2001-09-01 19:13:36 +00:00
parent 4ce28c0cd5
commit b02fbce931

View File

@ -40,7 +40,7 @@
#include "check.h"
#include "hashstr.h"
#include "xmalloc.h"
/* ca65 */
#include "condasm.h"
#include "error.h"
@ -616,7 +616,7 @@ static void StartExpClassic (Macro* M)
/* Check for end of file */
if (Tok == TOK_EOF) {
Error (ERR_SYNTAX);
Error (ERR_UNEXPECTED_EOF);
return;
}