]> git.sur5r.net Git - cc65/blobdiff - src/cc65/goto.c
Fix missing spaces
[cc65] / src / cc65 / goto.c
index 1b99a98030c3ecc20fa5aece05e3bf4a9a894894..08a7033c38dc3da200810884057a82a5f002abfc 100644 (file)
@@ -90,12 +90,12 @@ void GotoStatement (void)
             ConsumeLBrack ();
 
             /* Find array size */
-            if (!IsTypeArray(arr->Type) || SizeOf(arr->Type) == 0 ||
-                SizeOf(GetElementType(arr->Type)) != 2)
+            if (!IsTypeArray (arr->Type) || SizeOf (arr->Type) == 0 ||
+                SizeOf (GetElementType(arr->Type)) != 2)
                 Error ("Expected array");
-            if (GetElementCount(arr->Type) > 127)
+            if (GetElementCount (arr->Type) > 127)
                 Error ("Only arrays with <= 127 labels are supported, got %lu",
-                       GetElementCount(arr->Type));
+                       GetElementCount (arr->Type));
 
             if (CurTok.Tok == TOK_ICONST) {
                 val = CurTok.IVal;