]> Cypherpunks repositories - gostls13.git/commitdiff
runtime: fix code formatting
authorDmitriy Vyukov <dvyukov@google.com>
Wed, 22 Jan 2014 09:30:12 +0000 (13:30 +0400)
committerDmitriy Vyukov <dvyukov@google.com>
Wed, 22 Jan 2014 09:30:12 +0000 (13:30 +0400)
Place && at the end of line.
Offset expression continuation.

R=golang-codereviews, bradfitz
CC=golang-codereviews
https://golang.org/cl/55380044

src/pkg/runtime/msize.c

index 630cda2d43ed7145fd17984437a2a59554b2eb63..85088fdf465e65228849739397b3fab01acbd1e1 100644 (file)
@@ -92,9 +92,9 @@ runtime·InitSizes(void)
                // objects into the page, we might as well
                // use just this size instead of having two
                // different sizes.
-               if(sizeclass > 1
-               && npages == runtime·class_to_allocnpages[sizeclass-1]
-               && allocsize/size == allocsize/runtime·class_to_size[sizeclass-1]) {
+               if(sizeclass > 1 &&
+                       npages == runtime·class_to_allocnpages[sizeclass-1] &&
+                       allocsize/size == allocsize/runtime·class_to_size[sizeclass-1]) {
                        runtime·class_to_size[sizeclass-1] = size;
                        continue;
                }