From 076b546753157f758b316e59bcb51e6807c04057 Mon Sep 17 00:00:00 2001 From: kortschak Date: Wed, 1 Jun 2016 22:49:39 +0930 Subject: [PATCH] unix: fix typo Change-Id: Ic7bd0c26cd4ac63861c2ed3541560919d133cd14 Reviewed-on: https://go-review.googlesource.com/23621 Reviewed-by: Ian Lance Taylor --- unix/mkall.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/unix/mkall.sh b/unix/mkall.sh index a64f0e5f..3e224c57 100755 --- a/unix/mkall.sh +++ b/unix/mkall.sh @@ -161,7 +161,7 @@ freebsd_arm) mkerrors="$mkerrors" mksyscall="./mksyscall.pl -l32 -arm" 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 for making the bare syscall # API consistent across over platforms. mktypes="GOARCH=$GOARCH go tool cgo -godefs -- -fsigned-char" ;; @@ -194,7 +194,7 @@ linux_arm64) exit 1 fi 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 for making the bare syscall # API consistent across over platforms. mktypes="GOARCH=$GOARCH go tool cgo -godefs -- -fsigned-char" ;;