]> git.sur5r.net Git - cc65/commitdiff
Fix coding style. 457/head
authorPiotr Fusik <fox@scene.pl>
Fri, 30 Jun 2017 05:35:21 +0000 (07:35 +0200)
committerPiotr Fusik <fox@scene.pl>
Fri, 30 Jun 2017 05:35:21 +0000 (07:35 +0200)
src/cc65/codegen.c
src/grc65/main.c

index d9074e53946b8b4553d25d6487e9780fb1dbe2ca..dfc06fccc08a52757c5f5268391024abb6347b26 100644 (file)
@@ -3547,7 +3547,7 @@ void g_lt (unsigned flags, unsigned long val)
 /* Test for less than */
 {
     static const char* const ops[4] = {
-        "tosltax", "tosultax", "toslteax", "tosulteax",
+        "tosltax", "tosultax", "toslteax", "tosulteax"
     };
 
     unsigned Label;
index d36f039e60923c595098049fb32401102f602d60..a53801a395028eb3bafd4926b5d068bc622185e6 100644 (file)
@@ -230,8 +230,11 @@ static int findToken (const char * const *tokenTbl, const char *token)
 {
     /* takes as input table of tokens and token, returns position in table or -1 if not found */
     int i;
+
     for (i = 0; tokenTbl[i][0]; i++) {
-        if (strcmp (tokenTbl[i], token) == 0) return i;
+        if (strcmp (tokenTbl[i], token) == 0) {
+            return i;
+        }
     }
 
     return -1;