From: Ian Lance Taylor Date: Tue, 25 Jun 2019 17:58:47 +0000 (-0700) Subject: misc/cgo/test: use char, not int, so test works on big-endian systems X-Git-Tag: go1.13beta1~5 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=6d1aaf143c879ae7acbd20a1e60bf74681bf6055;p=gostls13.git misc/cgo/test: use char, not int, so test works on big-endian systems Updates #32579 Fixes #32770 Change-Id: I32d1dea7505e8ad22e11a9806e10d096924b729b Reviewed-on: https://go-review.googlesource.com/c/go/+/183778 Run-TryBot: Ian Lance Taylor TryBot-Result: Gobot Gobot Reviewed-by: Emmanuel Odeke --- diff --git a/misc/cgo/test/test.go b/misc/cgo/test/test.go index f7670ccf56..4286fb9cdb 100644 --- a/misc/cgo/test/test.go +++ b/misc/cgo/test/test.go @@ -853,7 +853,7 @@ static void issue29781F(char **p, int n) {} static uint16_t issue31093F(uint16_t v) { return v; } // issue 32579 -typedef struct S32579 { int data[1]; } S32579; +typedef struct S32579 { unsigned char data[1]; } S32579; */ import "C"