]> git.sur5r.net Git - cc65/blobdiff - src/sp65/input.c
Changed most "backticks" (grave accents) into apostrophes.
[cc65] / src / sp65 / input.c
index 381adf6b98bc733896fff91bfa89511ce428efd9..f1df247ae884cd929e62eb857fe2039ea1db2cb1 100644 (file)
@@ -103,7 +103,7 @@ Bitmap* ReadInputFile (const Collection* A)
                      sizeof (FormatTable[0]),
                      CompareFileId);
         if (F == 0) {
-            Error ("Unknown input format `%s'", Format);
+            Error ("Unknown input format '%s'", Format);
         }
     } else {
         /* No format given, use file name extension */
@@ -112,7 +112,7 @@ Bitmap* ReadInputFile (const Collection* A)
                        sizeof (FormatTable) / sizeof (FormatTable[0]));
         /* Found? */
         if (F == 0) {
-            Error ("Cannot determine file format of input file `%s'", Name);
+            Error ("Cannot determine file format of input file '%s'", Name);
         }
     }