]> git.sur5r.net Git - cc65/commitdiff
ld65: Be more verbose in token errors 300/head
authorLauri Kasanen <curaga@operamail.com>
Fri, 27 May 2016 17:03:58 +0000 (20:03 +0300)
committerLauri Kasanen <curaga@operamail.com>
Fri, 27 May 2016 17:03:58 +0000 (20:03 +0300)
src/ld65/scanner.c

index 0f6ea58de4240b2090abfc916f2dcb70aaf38ba4..3c2346aac9973cef83921fc9392430856589bd5e 100644 (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));
 }