]> git.sur5r.net Git - cc65/blobdiff - src/ar65/exports.c
goto.c warning fix for implicit truncation
[cc65] / src / ar65 / exports.c
index 11589a6218d4a1104cb20fcd1eebc8fff6571792..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;
@@ -130,8 +130,8 @@ void ExpInsert (const char* Name, const ObjData* Module)
 
 const ObjData* ExpFind (const char* Name)
 /* Check for an identifier in the list. Return NULL if not found, otherwise
- * return a pointer to the module, that exports the identifer.
- */
+** return a pointer to the module, that exports the identifer.
+*/
 {
     /* Get a pointer to the list with the symbols hash value */
     HashEntry* L = HashTab [HashStr (Name) % HASHTAB_SIZE];