1
0
mirror of https://github.com/cc65/cc65.git synced 2024-07-09 01:28:58 +00:00

Merge pull request #300 from clbr/ld65

ld65: Be more verbose in token errors
This commit is contained in:
Oliver Schmidt 2016-05-28 12:02:22 +02:00
commit 7845f1b1ca

View File

@ -505,7 +505,7 @@ void CfgSpecialToken (const IdentTok* Table, unsigned Size, const char* Name)
}
/* Not found or no identifier */
CfgError (&CfgErrorPos, "%s expected", Name);
CfgError (&CfgErrorPos, "%s expected, got '%s'", Name, SB_GetConstBuf(&CfgSVal));
}