mirror of
https://github.com/golang/go.git
synced 2025-12-08 06:10:04 +00:00
misc/cgo/testcarchive: don't use == for string equality in C code
For https://gcc.gnu.org/PR99553 Change-Id: I29a7fbfd89963d4139bc19af99330d70567938ea Reviewed-on: https://go-review.googlesource.com/c/go/+/300993 Trust: Ian Lance Taylor <iant@golang.org> Run-TryBot: Ian Lance Taylor <iant@golang.org> TryBot-Result: Go Bot <gobot@golang.org> Reviewed-by: Emmanuel Odeke <emmanuel@orijtech.com>
This commit is contained in:
parent
7588ef0d90
commit
73eb27bd3b
1 changed files with 1 additions and 1 deletions
2
misc/cgo/testcarchive/testdata/main_unix.c
vendored
2
misc/cgo/testcarchive/testdata/main_unix.c
vendored
|
|
@ -36,7 +36,7 @@ int install_handler() {
|
||||||
return 2;
|
return 2;
|
||||||
}
|
}
|
||||||
// gccgo does not set SA_ONSTACK for SIGSEGV.
|
// gccgo does not set SA_ONSTACK for SIGSEGV.
|
||||||
if (getenv("GCCGO") == "" && (osa.sa_flags&SA_ONSTACK) == 0) {
|
if (getenv("GCCGO") == NULL && (osa.sa_flags&SA_ONSTACK) == 0) {
|
||||||
fprintf(stderr, "Go runtime did not install signal handler\n");
|
fprintf(stderr, "Go runtime did not install signal handler\n");
|
||||||
return 2;
|
return 2;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue