]> git.sur5r.net Git - cc65/blobdiff - src/ar65/exports.c
goto.c warning fix for implicit truncation
[cc65] / src / ar65 / exports.c
index af176d019f0bcbf97e97f8d4f040fa57469c13eb..b1e133e72d38354bb41aa543317d8213d20d3850 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' "
-                     "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;