]> git.sur5r.net Git - cc65/blobdiff - src/common/print.c
Removed (pretty inconsistently used) tab chars from source code base.
[cc65] / src / common / print.c
index 48004d226c7aceb06c0c34b83dee099cb7b11d01..53b2aa210d16f81ccf297cb4b1aff86c7c8bf743 100644 (file)
@@ -1,12 +1,12 @@
 /*****************************************************************************/
 /*                                                                           */
-/*                                 print.c                                  */
+/*                                  print.c                                  */
 /*                                                                           */
-/*                             Program output                               */
+/*                              Program output                               */
 /*                                                                           */
 /*                                                                           */
 /*                                                                           */
-/* (C) 2001     Ullrich von Bassewitz                                       */
+/* (C) 2001      Ullrich von Bassewitz                                       */
 /*               Wacholderweg 14                                             */
 /*               D-70597 Stuttgart                                           */
 /* EMail:        uz@musoftware.de                                            */
 
 
 /*****************************************************************************/
-/*                                          Data                                    */
+/*                                   Data                                    */
 /*****************************************************************************/
 
 
 
-unsigned char Verbosity = 0;           /* Verbose operation flag */
+unsigned char Verbosity = 0;            /* Verbose operation flag */
 
 
 
 /*****************************************************************************/
-/*                                          Code                                    */
+/*                                   Code                                    */
 /*****************************************************************************/
 
 
@@ -63,8 +63,8 @@ void Print (FILE* F, unsigned V, const char* Format, ...)
 
     /* Check the verbosity */
     if (V > Verbosity) {
-               /* Don't output this message */
-               return;
+        /* Don't output this message */
+        return;
     }
 
     /* Output */