summaryrefslogtreecommitdiff
path: root/src/cmd
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2013-02-18 13:29:55 -0500
committerRuss Cox <rsc@golang.org>2013-02-18 13:29:55 -0500
commit4278f293a7239f8605194941329f5ec5fe783728 (patch)
tree1ca69563f6b1daa2b435ac33e3d4fb75c3e7ae73 /src/cmd
parentdc4b0e2b6ba73c54c0b18df9925409817657cb9b (diff)
downloadgo-4278f293a7239f8605194941329f5ec5fe783728.tar.gz
cmd/6c: fix build
copy+paste error while cleaning up CL 7303099 before submit R=ken2 CC=golang-dev https://codereview.appspot.com/7308104
Diffstat (limited to 'src/cmd')
-rw-r--r--src/cmd/6c/swt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cmd/6c/swt.c b/src/cmd/6c/swt.c
index 53b12d994..068401e19 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;