]> git.sur5r.net Git - cc65/blobdiff - src/co65/o65.c
Replace hard returns with an "else", add an error for non-IDENT tokens, and test...
[cc65] / src / co65 / o65.c
index 3496995a89dc4d393fd58249c1886f47a3d0c3bd..81c07bb8c6483093a33f1027d041e27e928d0a6b 100644 (file)
@@ -361,7 +361,7 @@ O65Data* ReadO65File (const char* Name)
     /* Open the o65 input file */
     FILE* F = fopen (Name, "rb");
     if (F == 0) {
-        Error ("Cannot open `%s': %s", Name, strerror (errno));
+        Error ("Cannot open '%s': %s", Name, strerror (errno));
     }
 
     /* Read the file data */