]> git.sur5r.net Git - cc65/blobdiff - src/ld65/objdata.c
Working
[cc65] / src / ld65 / objdata.c
index 085468da96519673480dd374411689a369b7ff50..ce88775dc74b30a4b8ae33066e1da22882a9d964 100644 (file)
@@ -115,35 +115,35 @@ void FreeObjData (ObjData* O)
 
 
 const char* GetObjFileName (const ObjData* O)
-/* Get the name of the object file. Return "(linker generated)" if the object
+/* Get the name of the object file. Return "[linker generated]" if the object
  * file is NULL.
  */
 {
-    return O? O->Name : "(linker generated)";
+    return O? O->Name : "[linker generated]";
 }
 
 
 
 const char* GetSourceFileName (const ObjData* O, unsigned Index)
 /* Get the name of the source file with the given index. If O is NULL, return
- * "(linker generated)" as the file name.
+ * "[linker generated]" as the file name.
  */
-{      
+{
     /* Check if we have an object file */
     if (O == 0) {
-       
-       /* No object file */
-       return "(linker generated)";
+
+       /* No object file */
+       return "[linker generated]";
 
     } else {
-    
+
        /* Check the parameter */
        PRECONDITION (Index < O->FileCount);
-    
+
        /* Return the name */
        return O->Files[Index];
 
-    }
+    }           
 }