X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=src%2Far65%2Fexports.c;h=b1e133e72d38354bb41aa543317d8213d20d3850;hb=1a5fa6dc512221490c5547505668a78308f904a8;hp=af176d019f0bcbf97e97f8d4f040fa57469c13eb;hpb=0b186407f1117529f0f6902569f9d24bc8b1b979;p=cc65 diff --git a/src/ar65/exports.c b/src/ar65/exports.c index af176d019..b1e133e72 100644 --- a/src/ar65/exports.c +++ b/src/ar65/exports.c @@ -113,9 +113,9 @@ void ExpInsert (const char* Name, const ObjData* Module) while (1) { if (strcmp (L->Name, Name) == 0) { /* Duplicate entry */ - Warning ("External symbol `%s' in module `%s', library `%s' " - "is duplicated in module `%s'", - Name, L->Name, LibName, Module->Name); + Warning ("External symbol '%s' in module '%s', library '%s', " + "is duplicated in module '%s'", + Name, L->Module->Name, LibName, Module->Name); } if (L->Next == 0) { break;