]> git.sur5r.net Git - cc65/blobdiff - src/ar65/add.c
Removed (pretty inconsistently used) tab chars from source code base.
[cc65] / src / ar65 / add.c
index 1ca0ff14fa45a559e1fe68f128ec8db23c371587..cecb892927850b7af64a19d07354adf4d0dd1419 100644 (file)
@@ -1,8 +1,8 @@
 /*****************************************************************************/
 /*                                                                           */
-/*                                  add.c                                   */
+/*                                   add.c                                   */
 /*                                                                           */
-/*                Object file adding for the ar65 archiver                  */
+/*                 Object file adding for the ar65 archiver                  */
 /*                                                                           */
 /*                                                                           */
 /*                                                                           */
@@ -43,7 +43,7 @@
 
 
 /*****************************************************************************/
-/*                                          Code                                    */
+/*                                   Code                                    */
 /*****************************************************************************/
 
 
@@ -55,10 +55,10 @@ void AddObjFiles (int argc, char* argv [])
 
     /* Check the argument count */
     if (argc <= 0) {
-       Error ("No library name given");
+        Error ("No library name given");
     }
     if (argc <= 1) {
-       Error ("No object files to add");
+        Error ("No object files to add");
     }
 
     /* Open the library, read the index */
@@ -67,8 +67,8 @@ void AddObjFiles (int argc, char* argv [])
     /* Add the object files */
     I = 1;
     while (I < argc) {
-       ObjAdd (argv [I]);
-       ++I;
+        ObjAdd (argv [I]);
+        ++I;
     }
 
     /* Create a new library file and close the old one */