1
0
mirror of https://github.com/golang/go synced 2024-11-25 00:07:56 -07:00

syscall: remove unnecessary semicolon from mksyscall.pl

R=golang-dev, r, rsc
CC=golang-dev
https://golang.org/cl/5495098
This commit is contained in:
Ian Lance Taylor 2011-12-19 20:57:59 -08:00
parent 36397814cc
commit b49625663e

View File

@ -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";