]> git.sur5r.net Git - cc65/commitdiff
Fixed a warning message. 210/head
authorGreg King <gregdk@users.sf.net>
Fri, 25 Sep 2015 06:31:17 +0000 (02:31 -0400)
committerGreg King <gregdk@users.sf.net>
Fri, 25 Sep 2015 06:31:17 +0000 (02:31 -0400)
src/ar65/exports.c

index af176d019f0bcbf97e97f8d4f040fa57469c13eb..b3bb4cebea5791c78d9f4bacf010ffb8899a1be9 100644 (file)
@@ -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;