Commit 8b7da4de authored by Russ Cox's avatar Russ Cox

cmd/gc: fix print format

Fixes 386 build.

TBR=r
CC=golang-codereviews
https://golang.org/cl/149620043
parent 11e53e46
......@@ -809,7 +809,7 @@ dcommontype(Sym *s, int ot, Type *t)
for(i=0; i<8; i++)
x1 = x1<<8 | gcmask[i];
if(widthptr == 4) {
p = smprint("gcbits.%#016x", x1);
p = smprint("gcbits.%#016llux", x1);
} else {
x2 = 0;
for(i=0; i<8; i++)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment