From ed2b8a16098850793c16c8fd616bd576c08103af Mon Sep 17 00:00:00 2001 From: Greg King Date: Fri, 25 Sep 2015 02:31:17 -0400 Subject: [PATCH] Fixed a warning message. --- src/ar65/exports.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ar65/exports.c b/src/ar65/exports.c index af176d019..b3bb4cebe 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' " + Warning ("External symbol `%s' in module `%s', library `%s', " "is duplicated in module `%s'", - Name, L->Name, LibName, Module->Name); + Name, L->Module->Name, LibName, Module->Name); } if (L->Next == 0) { break; -- 2.39.5