Commit 8b92066e authored by Mikio Hara's avatar Mikio Hara

gc: fix [568]g -V crash

R=lvd
CC=golang-dev
https://golang.org/cl/5314060
parent f777be8f
......@@ -229,7 +229,7 @@ main(int argc, char *argv[])
p = expstring();
if(strcmp(p, "X:none") == 0)
p = "";
print("%cg version %s%s%s%s\n", thechar, getgoversion(), *p ? " " : "", p);
print("%cg version %s%s%s\n", thechar, getgoversion(), *p ? " " : "", p);
exits(0);
} ARGEND
......
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