mirror of
https://github.com/cc65/cc65.git
synced 2024-12-24 11:31:31 +00:00
Fixed a warning message.
This commit is contained in:
parent
9704b1d11b
commit
ed2b8a1609
@ -113,9 +113,9 @@ void ExpInsert (const char* Name, const ObjData* Module)
|
|||||||
while (1) {
|
while (1) {
|
||||||
if (strcmp (L->Name, Name) == 0) {
|
if (strcmp (L->Name, Name) == 0) {
|
||||||
/* Duplicate entry */
|
/* Duplicate entry */
|
||||||
Warning ("External symbol `%s' in module `%s', library `%s' "
|
Warning ("External symbol `%s' in module `%s', library `%s', "
|
||||||
"is duplicated in module `%s'",
|
"is duplicated in module `%s'",
|
||||||
Name, L->Name, LibName, Module->Name);
|
Name, L->Module->Name, LibName, Module->Name);
|
||||||
}
|
}
|
||||||
if (L->Next == 0) {
|
if (L->Next == 0) {
|
||||||
break;
|
break;
|
||||||
|
Loading…
Reference in New Issue
Block a user