From: Russ Cox Date: Mon, 18 Feb 2013 18:29:55 +0000 (-0500) Subject: cmd/6c: fix build X-Git-Tag: go1.1rc2~980 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=07e87885ad4094aa27f166d1e666b29b910c0429;p=gostls13.git cmd/6c: fix build copy+paste error while cleaning up CL 7303099 before submit R=ken2 CC=golang-dev https://golang.org/cl/7308104 --- diff --git a/src/cmd/6c/swt.c b/src/cmd/6c/swt.c index 53b12d9941..068401e19b 100644 --- a/src/cmd/6c/swt.c +++ b/src/cmd/6c/swt.c @@ -626,7 +626,7 @@ align(int32 i, Type *t, int op, int32 *maxalign) int32 maxround(int32 max, int32 v) { - v = xround(v, SZ_LONG); + v = xround(v, SZ_VLONG); if(v > max) return v; return max;