]> git.sur5r.net Git - cc65/blobdiff - src/cc65/standard.c
Removed (pretty inconsistently used) tab chars from source code base.
[cc65] / src / cc65 / standard.c
index a7073f8cecd7f459bd414c41bde08920f68b4a78..e6a842d2c28b177743959cc79d81ec6e7e044472 100644 (file)
@@ -41,7 +41,7 @@
 
 
 /*****************************************************************************/
-/*                                  Data                                    */
+/*                                   Data                                    */
 /*****************************************************************************/
 
 
@@ -57,7 +57,7 @@ static const char* StdNames[STD_COUNT] = {
 
 
 /*****************************************************************************/
-/*                                  Code                                    */
+/*                                   Code                                    */
 /*****************************************************************************/
 
 
@@ -71,9 +71,9 @@ standard_t FindStandard (const char* Name)
 
     /* Check for a standard string */
     for (I = 0; I < STD_COUNT; ++I) {
-       if (strcmp (StdNames [I], Name) == 0) {
-           return (standard_t)I;
-       }
+        if (strcmp (StdNames [I], Name) == 0) {
+            return (standard_t)I;
+        }
     }
 
     /* Not found */