Commit a3855013 authored by Lucio De Re's avatar Lucio De Re Committed by Russ Cox

cmd/5l: fix print format

R=golang-dev, dave
CC=golang-dev
https://golang.org/cl/7304065
parent 8f2430a5
......@@ -686,7 +686,7 @@ asmb(void)
}
cflush();
if(debug['c']){
print("textsize=%d\n", segtext.filelen);
print("textsize=%ulld\n", segtext.filelen);
print("datsize=%ulld\n", segdata.filelen);
print("bsssize=%ulld\n", segdata.len - segdata.filelen);
print("symsize=%d\n", symsize);
......
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