Commit 6d1aaf14 authored by Ian Lance Taylor's avatar Ian Lance Taylor

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 <iant@golang.org>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: default avatarEmmanuel Odeke <emm.odeke@gmail.com>
parent 343b7fa6
......@@ -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"
......
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