]> git.sur5r.net Git - cc65/blobdiff - src/ar65/exports.c
goto.c warning fix for implicit truncation
[cc65] / src / ar65 / exports.c
index b3bb4cebea5791c78d9f4bacf010ffb8899a1be9..b1e133e72d38354bb41aa543317d8213d20d3850 100644 (file)
@@ -113,8 +113,8 @@ 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'",
+            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) {