1
0
mirror of https://github.com/cc65/cc65.git synced 2025-08-08 22:25:28 +00:00

ld65: avoid redundant error message information.

This commit is contained in:
Andrea Odetti
2021-05-11 13:54:05 +01:00
committed by Oliver Schmidt
parent 467844963a
commit feccc68c54

View File

@@ -775,9 +775,6 @@ static void PrintUnresolved (ExpCheckFunc F, void* Data)
/* Unresolved external */
Import* Imp = E->ImpList;
const char* name = GetString (E->Name);
fprintf (stderr,
"Unresolved external '%s' referenced in:\n",
name);
while (Imp) {
unsigned J;
for (J = 0; J < CollCount (&Imp->RefLines); ++J) {