Commit 5cdb3d03 authored by Michael Munday's avatar Michael Munday Committed by Ian Lance Taylor

syscall: correct spelling/typos in comment

Change-Id: Ib44c6b1ce07aa8fb67033cf21e177a90fd4005dc
Reviewed-on: https://go-review.googlesource.com/21002Reviewed-by: default avatarIan Lance Taylor <iant@golang.org>
parent 90a59d44
...@@ -156,8 +156,8 @@ freebsd_arm) ...@@ -156,8 +156,8 @@ freebsd_arm)
mkerrors="$mkerrors" mkerrors="$mkerrors"
mksyscall="./mksyscall.pl -l32 -arm" mksyscall="./mksyscall.pl -l32 -arm"
mksysnum="curl -s 'http://svn.freebsd.org/base/stable/10/sys/kern/syscalls.master' | ./mksysnum_freebsd.pl" mksysnum="curl -s 'http://svn.freebsd.org/base/stable/10/sys/kern/syscalls.master' | ./mksysnum_freebsd.pl"
# Let the type of C char be singed for making the bare syscall # Let the type of C char be signed to make the bare syscall
# API consistent across over platforms. # API consistent between platforms.
mktypes="GOARCH=$GOARCH go tool cgo -godefs -- -fsigned-char" mktypes="GOARCH=$GOARCH go tool cgo -godefs -- -fsigned-char"
;; ;;
linux_386) linux_386)
...@@ -189,8 +189,8 @@ linux_arm64) ...@@ -189,8 +189,8 @@ linux_arm64)
exit 1 exit 1
fi fi
mksysnum="./mksysnum_linux.pl $unistd_h" mksysnum="./mksysnum_linux.pl $unistd_h"
# Let the type of C char be singed for making the bare syscall # Let the type of C char be signed to make the bare syscall
# API consistent across over platforms. # API consistent between platforms.
mktypes="GOARCH=$GOARCH go tool cgo -godefs -- -fsigned-char" mktypes="GOARCH=$GOARCH go tool cgo -godefs -- -fsigned-char"
;; ;;
linux_ppc64) linux_ppc64)
......
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