]> Shamusworld >> Repos - rmac/blobdiff - object.c
Code cleanup, version bump for last commit. :-)
[rmac] / object.c
index 3cae5479de5cbfca362f74ba6537720e661db3e8..af019f07c14a8ef32d78e04d655840443d131040 100644 (file)
--- a/object.c
+++ b/object.c
@@ -57,7 +57,7 @@ See left.             4 & 5   If these bits are set to 0 (PF_PRIVATE), the processes'
 
 
 //
-// Add entry to symbol table
+// Add entry to symbol table (in ALCYON mode)
 // If 'globflag' is 1, make the symbol global
 // If in .PRG mode, adjust symbol values for fake link
 //
@@ -752,11 +752,11 @@ for(int j=0; j<i; j++)
                        free(strtable);
                }
        }
-    else if (obj_format == XEX)
-    {
-        // Just write the object file
-        m6502obj(fd);
-    }
+       else if (obj_format == XEX)
+       {
+               // Just write the object file
+               m6502obj(fd);
+       }
 
        return 0;
 }