Commit b4962566 authored by Ian Lance Taylor's avatar Ian Lance Taylor

syscall: remove unnecessary semicolon from mksyscall.pl

R=golang-dev, r, rsc
CC=golang-dev
https://golang.org/cl/5495098
parent 36397814
......@@ -232,7 +232,7 @@ while(<>) {
$text .= "\t}\n";
} elsif ($do_errno) {
$text .= "\tif e1 != 0 {\n";
$text .= "\t\terr = e1;\n";
$text .= "\t\terr = e1\n";
$text .= "\t}\n";
}
$text .= "\treturn\n";
......
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