From: Dmitriy Vyukov Date: Wed, 22 Jan 2014 09:30:12 +0000 (+0400) Subject: runtime: fix code formatting X-Git-Tag: go1.3beta1~898 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=b7b93a7154ea1b569019e9d993f21a52d8aeda14;p=gostls13.git runtime: fix code formatting Place && at the end of line. Offset expression continuation. R=golang-codereviews, bradfitz CC=golang-codereviews https://golang.org/cl/55380044 --- diff --git a/src/pkg/runtime/msize.c b/src/pkg/runtime/msize.c index 630cda2d43..85088fdf46 100644 --- a/src/pkg/runtime/msize.c +++ b/src/pkg/runtime/msize.c @@ -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; }